.contact-hero {
    padding: 150px 0 50px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-hero p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-form-container h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #4a6cf7;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #e7f3ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: #4a6cf7;
}

.info-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.info-content p, .info-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #4a6cf7;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e7f3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #4a6cf7;
}

.social-links a:hover svg {
    fill: #fff;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #4a6cf7;
    transition: fill 0.3s ease;
}

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

.map-section h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

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

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

.faq-section h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.accordion {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-item {
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #f8f9fa;
}

.accordion-button::after {
    content: "+";
    font-size: 1.5rem;
    color: #4a6cf7;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    color: #666;
    padding-bottom: 20px;
}

.accordion-item.active .accordion-button::after {
    content: "-";
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-form-container, .contact-info {
        padding: 30px 20px;
    }
}