        :root {
            --primary: #0066b3;
            --secondary: #e6f2ff;
            --accent: #ff9900;
            --dark: #003b6f;
            --light: #f8f9fa;
            --success: #28a745;
            --text: #333;
            --border: #dee2e6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--light);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 30px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            font-size: 2.5rem;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .tagline {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 5px;
        }
        
        /* Hero Section */
        .hero {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230066b3" opacity="0.05"/></svg>');
            padding: 60px 0;
            text-align: center;
            background-color: var(--secondary);
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--accent);
            color: white;
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .cta-button:hover {
            background: #e68a00;
            transform: translateY(-2px);
        }
        
        /* Info Cards */
        .info-section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 50px;
            color: var(--primary);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
        }
        
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-10px);
        }
        
        .card-icon {
            background: var(--primary);
            color: white;
            font-size: 2rem;
            padding: 25px;
            text-align: center;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Process Section */
        .process-section {
            background: var(--secondary);
            padding: 60px 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 15px;
            margin-bottom: 30px;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 25px;
            right: -20px;
            height: 2px;
            width: 40px;
            background: var(--accent);
        }
        
        /* Complaint Form */
        .form-section {
            padding: 60px 0;
            background: white;
        }
        
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .form-header {
            background: var(--primary);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .form-header h2 {
            font-size: 1.8rem;
        }
        
        .form-body {
            padding: 30px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.1);
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .form-row .form-group {
            flex: 1;
            margin-bottom: 0;
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: #e68a00;
        }
        
        .required {
            color: #e74c3c;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent);
        }
        
        .contact-list {
            list-style: none;
        }
        
        .contact-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-list i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button.primary {
            background: var(--accent);
            color: white;
        }
        
        .cta-button.secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .cta-button.secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Provider Registration Section */
        .provider-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .provider-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .provider-content h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .provider-content > p {
            font-size: 1.2rem;
            color: var(--text);
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .provider-benefits {
            margin-bottom: 40px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
        }
        
        .benefit-item i {
            font-size: 2rem;
            color: var(--primary);
            margin-right: 20px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        .benefit-item h4 {
            color: var(--dark);
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        
        .benefit-item p {
            color: var(--text);
            line-height: 1.5;
            margin: 0;
        }
        
        .register-btn {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            border: none;
            padding: 18px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 15px rgba(0, 102, 179, 0.3);
        }
        
        .register-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 102, 179, 0.4);
        }
        
        .register-btn i {
            font-size: 1.3rem;
        }
        
        .provider-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .stats-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 400px;
            width: 100%;
        }
        
        .stat-item {
            margin-bottom: 30px;
        }
        
        .stat-item:last-child {
            margin-bottom: 0;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--text);
            font-weight: 500;
        }
        
        /* Provider Modal Styles */
        .provider-modal {
            max-width: 800px;
            max-height: 95vh;
        }
        
        .provider-modal .modal-header {
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s ease;
        }
        
        .close-modal:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .form-section {
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border);
        }
        
        .form-section:last-of-type {
            border-bottom: none;
            margin-bottom: 25px;
        }
        
        .form-section h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .form-section h3 i {
            font-size: 1.2rem;
        }
        
        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 12px;
            margin-top: 10px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background: var(--light);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .checkbox-item:hover {
            background: var(--secondary);
            border-color: var(--primary);
        }
        
        .checkbox-item input[type="checkbox"] {
            margin-right: 10px;
            transform: scale(1.2);
            accent-color: var(--primary);
        }
        
        .checkbox-item span {
            font-weight: 500;
            color: var(--text);
        }
        
        .provider-modal .modal-footer {
            border-top: 1px solid var(--border);
            padding: 25px 30px;
            display: flex;
            gap: 15px;
            justify-content: flex-end;
        }
        
        /* Complaint Modal Styles */
        .complaint-modal {
            max-width: 800px;
            max-height: 95vh;
        }
        
        .complaint-modal .modal-footer {
            border-top: 1px solid var(--border);
            padding: 25px 30px;
            display: flex;
            gap: 15px;
            justify-content: flex-end;
        }
        
        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            backdrop-filter: blur(5px);
            padding: 10px;
            box-sizing: border-box;
        }
        
        .modal-content {
            background: white;
            border-radius: 15px;
            max-width: 600px;
            width: 100%;
            max-height: calc(100vh - 20px);
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease-out;
            position: relative;
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .modal-header {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 25px;
            border-radius: 15px 15px 0 0;
            text-align: center;
        }
        
        .modal-header h2 {
            margin: 0;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .modal-header i {
            font-size: 1.8rem;
        }
        
        .modal-body {
            padding: 30px;
            line-height: 1.6;
        }
        
        .modal-body h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .privacy-points {
            margin: 25px 0;
        }
        
        .privacy-point {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            background: var(--secondary);
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        
        .privacy-point i {
            color: var(--primary);
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .privacy-point strong {
            color: var(--dark);
        }
        
        .consent-section {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border: 1px solid var(--border);
        }
        
        .consent-section ul {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .consent-section li {
            margin-bottom: 8px;
        }
        
        .disclaimer-note {
            background: #e8f4fd;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            margin-top: 20px;
        }
        
        .disclaimer-note i {
            color: var(--primary);
            margin-right: 8px;
        }
        
        .disclaimer-note a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .disclaimer-note a:hover {
            text-decoration: underline;
        }
        
        .modal-footer {
            padding: 20px 30px;
            border-top: 1px solid var(--border);
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        
        .btn-accept, .btn-decline {
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 140px;
        }
        
        .btn-accept {
            background: var(--success);
            color: white;
        }
        
        .btn-accept:hover {
            background: #218838;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        }
        
        .btn-decline {
            background: #6c757d;
            color: white;
        }
        
        .btn-decline:hover {
            background: #5a6268;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
        }
        
        /* Social Media Styles */
        .social-media {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .social-link:hover {
            background: var(--accent);
            transform: translateX(5px);
        }
        
        .social-link i {
            font-size: 1.2rem;
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }
        
        .social-link span {
            font-weight: 500;
        }
        
        .social-description {
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.4;
        }
        
        /* Footer Link Styles - Unified for all footer items */
        .footer-link {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: inherit;
            width: 100%;
        }
        
        .footer-link:hover:not(:disabled) {
            background: var(--accent);
            transform: translateX(5px);
        }
        
        .footer-link:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .footer-link:disabled:hover {
            transform: none;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .footer-link i {
            font-size: 1.2rem;
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }
        
        .footer-link span {
            font-weight: 500;
        }
        
        /* Email link specific styling */
        .footer-link[href^="mailto:"] {
            color: white;
        }
        
        .footer-link[href^="mailto:"]:hover {
            color: white;
        }
        
        /* Mobile-specific modal improvements */
        @media (max-width: 480px) {
            .modal-overlay {
                align-items: flex-start;
                padding: 5px;
            }
            
            .modal-content {
                margin-top: 10px;
                border-radius: 10px;
                max-height: calc(100vh - 20px);
            }
            
            .modal-header {
                padding: 15px;
                border-radius: 10px 10px 0 0;
            }
            
            .modal-header h2 {
                font-size: 1.2rem;
                line-height: 1.3;
            }
            
            .modal-body {
                padding: 12px;
                font-size: 0.9rem;
                line-height: 1.5;
            }
            
            .privacy-point {
                padding: 10px;
                margin-bottom: 12px;
            }
            
            .consent-section {
                padding: 12px;
                font-size: 0.85rem;
            }
            
            .consent-section ul {
                padding-left: 15px;
            }
            
            .disclaimer-note {
                padding: 10px;
                font-size: 0.85rem;
            }
            
            .btn-accept, .btn-decline {
                padding: 16px;
                font-size: 1.1rem;
                min-height: 48px; /* Better touch target */
            }
            
            .close-modal {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
                font-size: 1.8rem;
            }
            
            /* Form elements mobile optimization */
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 14px 12px;
                font-size: 16px; /* Prevents zoom on iOS */
                border-radius: 8px;
            }
            
            .checkbox-item {
                padding: 12px;
                min-height: 48px;
                align-items: center;
            }
            
            .checkbox-item input[type="checkbox"] {
                transform: scale(1.3);
                margin-right: 12px;
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .process-steps {
                flex-direction: column;
            }
            
            .step:not(:last-child)::after {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            .provider-intro {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .provider-content h2 {
                font-size: 2rem;
            }
            
            .benefit-item {
                flex-direction: column;
                text-align: center;
            }
            
            .benefit-item i {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .register-btn {
                width: 100%;
                justify-content: center;
            }
            
            .stats-card {
                padding: 30px 20px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .checkbox-group {
                grid-template-columns: 1fr;
            }
            
            .provider-modal .modal-footer {
                flex-direction: column;
            }
            
            .modal-content {
                width: 95%;
                margin: 10px;
                max-height: 95vh;
                border-radius: 10px;
            }
            
            .modal-header {
                padding: 20px 15px;
                border-radius: 10px 10px 0 0;
            }
            
            .modal-header h2 {
                font-size: 1.3rem;
                flex-direction: column;
                gap: 8px;
            }
            
            .modal-header i {
                font-size: 1.5rem;
            }
            
            .modal-body {
                padding: 15px;
                font-size: 0.95rem;
            }
            
            .modal-footer {
                flex-direction: column;
                padding: 15px;
                gap: 10px;
            }
            
            .btn-accept, .btn-decline {
                width: 100%;
                padding: 14px;
                font-size: 1rem;
            }
            
            .privacy-point {
                flex-direction: column;
                text-align: center;
                padding: 12px;
                margin-bottom: 15px;
            }
            
            .privacy-point i {
                margin-bottom: 10px;
                margin-right: 0;
                font-size: 1.3rem;
            }
            
            .consent-section {
                padding: 15px;
                font-size: 0.9rem;
            }
            
            .disclaimer-note {
                padding: 12px;
                font-size: 0.9rem;
            }
            
            .close-modal {
                top: 15px;
                right: 15px;
                font-size: 1.5rem;
                width: 35px;
                height: 35px;
            }
            
            /* Provider and Complaint Modal Mobile Styles */
            .provider-modal, .complaint-modal {
                max-width: 95%;
                margin: 10px;
            }
            
            .provider-modal .modal-body,
            .complaint-modal .modal-body {
                padding: 15px;
            }
            
            .form-section h3 {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }
            
            .form-group {
                margin-bottom: 20px;
            }
            
            .form-group label {
                font-size: 0.95rem;
                margin-bottom: 6px;
            }
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px;
                font-size: 1rem;
            }
            
            .checkbox-item {
                padding: 10px 12px;
                font-size: 0.9rem;
            }
            
            .provider-modal .modal-footer,
            .complaint-modal .modal-footer {
                padding: 15px;
                flex-direction: column;
                gap: 10px;
            }
            
            .provider-modal .modal-footer button,
            .complaint-modal .modal-footer button {
                width: 100%;
                padding: 14px;
            }
        }