/* Ensure default accordion button color */
.accordion-button {
    background-color: inherit !important;
    color: inherit !important;
    border: none !important;
    box-shadow: none !important;
}

/* Ensure no blue color on active (default open state) */
.accordion-button:not(.collapsed) {
    background-color: inherit !important;
    color: inherit !important;
    border: none !important;
}

/* Remove focus outline */
.accordion-button:focus, 
.accordion-button:active, 
.accordion-button:focus-visible {
    box-shadow: none !important;
    outline: none !important;
    background-color: inherit !important;
    color: inherit !important;
    border: none !important;
}
        /* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f0f2f5;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #0095f6;
        }
        
        a:hover {
            color: #0077c5;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        
        
        
        
        /* Hero section */
        .hero {
            background: url('images/hero.jpeg') center/cover;
            height: 400px;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
        }
        
        .hero-content {
            position: relative;
            color: white;
            max-width: 600px;
            margin-left: 50px;
        }
        
        .hero h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .cta-btn {
            display: inline-block;
            background: #0095f6;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .cta-btn:hover {
            background: #0077c5;
            color: white;
        }
        
        /* Services section */
        .services {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
            color: #333;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: #0095f6;
        }
        
        .service-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .service-desc {
            color: #666;
            margin-bottom: 20px;
        }
        
        /* Form styles */
        .service-form {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            appearance: none;
            background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 15px center;
        }
        
        .submit-btn {
            background: #0095f6;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: #0077c5;
        }
        
        /* How it works section */
        .how-it-works {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .step {
            flex: 0 0 calc(33.333% - 30px);
            text-align: center;
            padding: 30px;
            position: relative;
        }
        
        .step-number {
            background: #0095f6;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .step-desc {
            color: #666;
        }
        
        /* Conditions section */
        .conditions {
            padding: 60px 0;
        }
        
        .condition-list {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .condition-list h3 {
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .condition-list ul {
            padding-left: 20px;
        }
        
        .condition-list li {
            margin-bottom: 10px;
        }
        
        /* Footer styles */
        footer {
            background: #262626;
            color: #f8f8f8;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #b0b0b0;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #0095f6;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: #b0b0b0;
            font-size: 20px;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: #0095f6;
        }
        
        .footer-bottom {
            border-top: 1px solid #3d3d3d;
            padding-top: 20px;
            text-align: center;
            color: #b0b0b0;
            font-size: 14px;
        }
        
        /* Loading animation */
        .loading-container {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .loading-spinner {
            border: 5px solid #f3f3f3;
            border-top: 5px solid #0095f6;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .loading-text {
            font-size: 18px;
            color: #333;
        }
        
        /* Success message */
        .success-message {
            display: none;
            background: #dff0d8;
            color: #3c763d;
            padding: 20px;
            border-radius: 5px;
            margin-top: 20px;
            text-align: center;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            nav.active {
                max-height: 300px;
            }
            
            nav ul {
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
            }
            
            nav ul li {
                margin: 0;
                width: 100%;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            
            nav ul li a {
                display: block;
                padding: 12px 0;
            }
            
            .hamburger {
                display: block;
                position: absolute;
                top: 22px;
                right: 20px;
            }
            
            .hero-content {
                margin-left: 20px;
                margin-right: 20px;
            }
            
            .steps {
                flex-direction: column;
            }
            
            .step {
                flex: 0 0 100%;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }
    