        /* CSS Reset & Base Styles */
        :root {
            --primary: #1D3557;       /* Deep Blue */
            --secondary: #457B9D;     /* Medium Blue */
            --accent: #A8DADC;        /* Light Turquoise */
            --light: #F1FAEE;         /* Light Neutral */
            --dark: #343A40;          /* Dark Neutral */
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --radius: 8px;
            --container: 1140px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.5rem;
        }
        
        h2 {
            font-size: 2rem;
        }
        
        h3 {
            font-size: 1.5rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--primary);
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        .btn-primary:hover {
            background-color: #8fcccf;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: var(--secondary);
            color: var(--light);
            transform: translateY(-2px);
        }
        
        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }
        
        /* Container */
        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Sections */
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .section-title p {
            color: var(--dark);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Header */
        header {
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            margin-right: 0.5rem;
        }
        
        .logo span {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        /* Hero Section */
        .hero {
            padding: 8rem 0 5rem;
            background-color: var(--primary);
            color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(29, 53, 87, 0.95) 0%, rgba(69, 123, 157, 0.8) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        
        .hero-text {
            flex: 1;
        }
        
        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--light);
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border: 3px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Features Section */
        .features {
            background-color: var(--light);
            position: relative;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .feature-item {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            background-color: var(--accent);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .feature-icon svg {
            width: 40px;
            height: 40px;
            color: var(--primary);
        }
        
        .feature-item h3 {
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .feature-item p {
            color: var(--dark);
            font-size: 0.95rem;
        }
        
        /* Pricing Section */
        .pricing {
            background-color: white;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .pricing-card {
            background-color: var(--light);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-header {
            background-color: var(--primary);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .pricing-card.featured .pricing-header {
            background-color: var(--secondary);
        }
        
        .pricing-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .pricing-price span {
            font-size: 1rem;
            font-weight: normal;
        }
        
        .pricing-features {
            padding: 2rem;
        }
        
        .pricing-features ul {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }
        
        .pricing-card .btn {
            display: block;
            width: 100%;
        }
        
        .featured-badge {
            position: absolute;
            top: 0;
            right: 1.5rem;
            background-color: var(--accent);
            color: var(--primary);
            font-size: 0.8rem;
            padding: 0.25rem 1rem;
            border-radius: 0 0 var(--radius) var(--radius);
            font-weight: bold;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--light);
            text-align: center;
        }
        
        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial-item {
            background-color: white;
            border-radius: var(--radius);
            padding: 3rem;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .testimonial-item::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-size: 5rem;
            color: var(--accent);
            opacity: 0.5;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 3rem 0;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-links a {
            color: var(--light);
            opacity: 0.8;
        }
        
        .footer-links a:hover {
            opacity: 1;
        }
        
        .copyright {
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        /* Modal */
        .modal-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-container.active,
        .modal-container.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal {
            background-color: white;
            border-radius: var(--radius);
            width: 100%;
            max-width: 600px;
            position: relative;
            transform: translateY(20px);
            transition: all 0.3s ease;
            overflow: hidden;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .modal-container.active .modal,
        .modal-container.show .modal {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
            transition: var(--transition);
            z-index: 10;
        }
        
        .modal-close:hover {
            color: var(--accent);
        }
        
        .modal-header {
            background-color: var(--primary);
            color: white;
            padding: 1.5rem;
            text-align: center;
            position: relative;
        }
        
        .modal-header h3 {
            margin-bottom: 0;
            font-size: 1.8rem;
        }
        
        .modal-body {
            padding: 2rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(69, 123, 157, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-text {
            font-size: 0.875rem;
            color: #6c757d;
            margin-top: 0.5rem;
        }
        
        .form-submit {
            width: 100%;
        }
        
        .success-message {
            text-align: center;
            padding: 2rem;
            display: none;
        }
        
        .success-icon {
            font-size: 3rem;
            color: #28a745;
            margin-bottom: 1rem;
        }
        
        /* Enhanced Form Styles */
        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -0.5rem;
        }
        
        .form-group.half {
            flex: 0 0 calc(50% - 1rem);
            margin: 0 0.5rem 1.5rem;
        }
        
        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
            margin-top: 0.5rem;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
        }
        
        .checkbox-item input[type="checkbox"] {
            margin-right: 0.5rem;
            width: 18px;
            height: 18px;
        }
        
        .privacy-consent {
            display: flex;
            align-items: flex-start;
        }
        
        .privacy-consent input[type="checkbox"] {
            margin-right: 0.5rem;
            margin-top: 0.25rem;
            width: 18px;
            height: 18px;
        }
        
        .privacy-consent label {
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .privacy-consent a {
            text-decoration: underline;
        }
        
        /* Form Placeholder Styling */
        .form-control::placeholder {
            color: #b1b1b1;
            opacity: 1;
        }
        
        /* Responsive Form */
        @media (max-width: 767px) {
            .form-group.half {
                flex: 0 0 calc(100% - 1rem);
            }
            
            .checkbox-group {
                grid-template-columns: 1fr;
            }
            
            .modal {
                max-width: 90%;
            }
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .hero-image {
                margin-top: 2rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 767px) {
            section {
                padding: 3rem 0;
            }
            
            .hero {
                padding: 7rem 0 3rem;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
        }