:root {
            --primary-color: #4a6cf7;
            --secondary-color: #6c757d;
            --dark-color: #212529;
            --light-color: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        .page-header {
            padding: 80px 0 40px;
            background-color: #f8f9fa;
            margin-bottom: 50px;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .page-subtitle {
            font-size: 1.1rem;
            color: var(--secondary-color);
        }

        .contact-section {
            padding: 60px 0;
        }

        .contact-form {
            background-color: #fff;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .form-control {
            padding: 0.75rem 1rem;
            border-radius: 5px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(74, 108, 247, 0.25);
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #3a5bd9;
            border-color: #3a5bd9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
        }

        .contact-info {
            background-color: var(--primary-color);
            color: #fff;
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 1.2rem;
        }

        .contact-details h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            margin-bottom: 0;
            opacity: 0.9;
        }

        .social-links {
            margin-top: 2rem;
        }

        .social-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .social-link {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: #fff;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .map-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 400px;
        }

        .faq-section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--dark-color);
        }

        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .accordion-button {
            font-weight: 600;
            background-color: #fff;
            color: var(--dark-color);
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: #fff;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .footer {
            background-color: var(--dark-color);
            color: #fff;
            padding: 50px 0 20px;
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            display: block;
            margin-bottom: 0.75rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #fff;
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 991px) {
            .page-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 767px) {
            .page-header {
                padding: 60px 0 30px;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .contact-form, .contact-info {
                padding: 1.5rem;
            }
        }