﻿body {
    background-color: #F8F5F1;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
}
.contact-page {
    padding-top: 60px !important;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2F4730;

}

.contact-icon {
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.contact-form-card {
    background: white;
    padding: 25px;
    width: 350px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

    .contact-form-card input,
    .contact-form-card textarea {
        width: 100%;
        padding: 12px;
        margin: 8px 0 15px 0;
        border: none;
        border-bottom: 1px solid #ccc;
        background: transparent;
        outline: none;
    }

.btn-send {
    width: 100%;
    background-color: #5F7A52;
    color: white;
    padding: 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

    .btn-send:hover {
        background-color: #3F5736;
    }

.contact-info {
    text-align: left;
    width: 350px;
    font-size: 15px;
    color: #333;
}

    .contact-info h3 {
        margin-top: 20px;
        color: #2F4730;
        font-weight: 600;
    }

.social-icons i {
    font-size: 20px;
    margin-right: 12px;
    color: #2F4730;
    cursor: pointer;
}

    .social-icons i:hover {
        color: #4C6B4A;
    }

.map-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-form-card,
    .contact-info {
        width: 90%;
        max-width: 400px;
    }

    .contact-title {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-icon {
        font-size: 26px;
    }

    .contact-form-card,
    .contact-info {
        width: 100%;
    }

    .contact-wrapper {
        padding: 0 15px;
    }
}
