.contact-page {
    font-family: 'Comfortaa', sans-serif;
    color: #4A3C31;
    background-color: #fff;
    padding-bottom: 80px;
}

.contact-breadcrumb-section {
    background-color: #FEF9F2; /* Very light beige/peach */
    padding: 15px 0;
}

.contact-breadcrumbs {
    font-size: 14px;
    color: #8D7765;
}

.contact-breadcrumbs a {
    color: #8D7765;
    text-decoration: none;
}

.contact-breadcrumbs span {
    color: #4A3C31;
    font-weight: bold;
}

.contact-top-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
}

.header-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header-box h1 {
    font-size: 48px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

.header-box p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.header-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
}

.btn-outline {
    border: 1px solid #1A202C; /* Darker border */
    background: #fff;
    color: #1A202C;
}

.btn-green {
    background-color: #6DA06F; /* Leaf green */
    color: #fff;
    border: none;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    padding-top: 40px;
}

/* Vertical divider */
.contact-grid::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #CBD5E0;
    transform: translateX(-50%);
}

.contact-info h2, .contact-form-wrapper h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

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

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

.info-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.info-text p {
    font-size: 20px;
    line-height: 1.4;
    color: #333;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: bold;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    padding: 15px;
    border: 1px solid #E2E8F0;
    border-radius: 5px;
    font-size: 14px;
    background-color: #F8FAFC;
    width: 100%;
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    text-align: right;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background-color: #D1FAE5;
    color: #065F46;
}

.alert-danger {
    background-color: #FEE2E2;
    color: #991B1B;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-grid::after {
        display: none;
    }
    
    .header-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-box {
        padding: 20px;
    }
}
