.contact-page {
    padding-top: 80px;
    background-color: #FFE5B4; /* Main peach background */
}

.contact-hero {
    background-color: transparent; /* Removed peach overlay */
    background-image: url('https://scontent-cpt1-1.xx.fbcdn.net/v/t39.30808-6/484149955_976739154647687_7425878167960854169_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=127cfc&_nc_eui2=AeGEEmV1nbK0GqBnEokh0REnyxXRJ4OhDNnLFdEng6EM2cHBkqL1ts62PObUmZB7FeB6CYKxuP2MCetWzxAbmJT8&_nc_ohc=Njvc7ol26bgQ7kNvwFIjWWx&_nc_oc=AdnxlU0Cq_ll7uMl7HSqPSz4qH65AWew3gGxf77a4dOS_493AicFBE__UozRlUitRJI&_nc_zt=23&_nc_ht=scontent-cpt1-1.xx&_nc_gid=_ys23ccpoh6Oz1T7rXWuIA&oh=00_AfMeD1VRzzI1F_kvTv7g_xtFY3OpUo3fORjJz52Y0FyzfA&oe=68644F9F');
    background-size: cover;
    background-position: center;
    color: #fff; /* Changed text color to white for better visibility */
    text-align: center;
    padding: 6rem 5%;
    position: relative;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff; /* Changed text color to white */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Changed shadow for better visibility */
}

.contact-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    color: #fff; /* Changed text color to white */
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Changed shadow for better visibility */
}

.contact-content {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFE5B4; /* Main peach for content */
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: #FFDAB9; /* Lighter peach for info cards */
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.info-card .icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.info-card h3 {
    color: #1a1a1a; /* Black text */
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #333; /* Dark gray text */
    margin-bottom: 0.3rem;
}

.contact-form-container {
    background-color: #FFDAB9; /* Lighter peach for form */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a; /* Black text */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333; /* Dark gray text */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #ff6b00;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #e65100;
}

.map-section {
    padding: 4rem 5%;
    background-color: #FFCBA4; /* Darker peach for map section */
    text-align: center;
}

.map-section h2 {
    margin-bottom: 2rem;
    color: #1a1a1a; /* Black text */
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
    }

    .contact-info {
        order: 2;
        gap: 1rem;
    }

    .contact-form-container {
        order: 1;
    }

    .info-card {
        max-width: 350px;
        margin: 0 auto;
        padding: 1.2rem;
    }
} 