
        :root {
            --primary: #3a5999;
            --secondary: #64b6ac;
            --accent: #f39237;
            --light: #f5f7fa;
            --dark: #2d3748;
            --shadow: rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        header {
            background-color: white;
            box-shadow: 0 2px 10px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 24px;
            color: var(--primary);
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .btn {
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #2d487d;
        }
        
        .btn-lg {
            padding: 12px 24px;
            font-size: 18px;
        }
        
        .page-header {
            background-color: var(--primary);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .header-title {
            font-size: 42px;
            margin-bottom: 15px;
        }
        
        .header-subtitle {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .form-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .form-content h2 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .benefits-list {
            margin-top: 30px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .benefit-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-weight: bold;
        }
        
        .testimonial {
            background-color: var(--light);
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }
        
        .form-box {
            background-color: var(--light);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .form-title {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 25px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
            background-repeat: no-repeat;
            background-position-x: calc(100% - 10px);
            background-position-y: center;
        }
        
        .checkbox-group {
            margin-top: 10px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .checkbox-item input {
            margin-right: 10px;
        }
        
        .form-note {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }
        
        .required {
            color: #e53e3e;
        }
        
        .form-submit {
            margin-top: 30px;
            text-align: center;
        }
        
        .privacy-note {
            font-size: 14px;
            color: #666;
            text-align: center;
            margin-top: 20px;
        }
        
        .faq-section {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 36px;
            color: var(--primary);
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .faq-item {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .faq-question {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }
        
        .footer-info {
            padding-right: 20px;
        }
        
        .footer-links h4 {
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .form-container {
                grid-template-columns: 1fr;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .nav-links {
                display: none;
            }
        }


        /* Styles for the .page-header section on the pricing page */

/* Ensure these CSS variables are defined in your global styles.css or a base stylesheet:
:root {
    --primary: #3a5999; /* Example: Your primary blue color */
    /* --light: #f5f7fa; */
    /* --dark: #2d3748; */

*/

.page-header {
    background-color: var(--primary); /* Sets the background to your primary blue */
    color: white;                     /* Sets the default text color within this section to white */
    padding: 60px 0;                  /* Adjust top/bottom padding to change height (e.g., 80px for taller, 40px for shorter) */
    text-align: center;               /* Centers the text content */
}

.page-header .container {
    /* Standard container styles are likely in your global styles.css */
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    /* padding: 0 20px; */
}

.page-header .header-title { /* Styles for the h1 with class="header-title" */
    font-size: 42px;          /* Adjust font size as needed */
    font-weight: 700;         /* Or your preferred weight */
    margin-bottom: 15px;      /* Space below the main title */
    color: white;             /* Explicitly set color to white */
    line-height: 1.2;
}

.page-header .header-subtitle { /* Styles for the p with class="header-subtitle" */
    font-size: 20px;          /* Adjust font size as needed */
    line-height: 1.6;
    max-width: 800px;         /* Limits the width of the subtitle for better readability */
    margin: 0 auto;           /* Centers the subtitle block if max-width is applied */
    color: white;             /* Explicitly set color to white */
    opacity: 0.9;             /* Optional: Makes subtitle slightly less prominent than title */
}
