/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    line-height: 1.6;
    background-color: #FEFAF4;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Colors */
:root {
    --brand-green: #67b068; /* adjusted to match the soft green */
    --footer-bg: #222222;
    --text-color: #111111;
}

/* Main Content */
.main-content {
    padding-top: 40px;
    padding-bottom: 80px;
}

/* Intro Section */
.intro-section {
    margin-bottom: 60px;
}

.page-title {
    font-size: 28px;
    color: var(--brand-green);
    margin-bottom: 30px;
    text-decoration: underline;
    text-decoration-color: var(--brand-green);
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.intro-text {
    font-size: 17px;
    margin-bottom: 25px;
    max-width: 1000px;
}

.intro-text .highlight {
    color: var(--brand-green);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 40px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    max-width: 650px;
    display: block;
}

.contact-form-container {
    flex: 1;
    max-width: 450px;
}

.contact-form {
    border: 1px solid #333;
    padding: 30px;
    background: #FEFAF4;
}

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

.form-group label {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #777;
    padding: 10px;
    font-size: 16px;
    font-family: inherit;
    background-color: #FEFAF4;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
}

.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 10px 30px;
    font-size: 18px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #333;
    font-family: inherit;
    transition: all 0.2s;
}

.btn:hover {
    background: #f0f0f0;
}

.btn-submit {
    background: #000;
    color: #fff;
}

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

/* Location Section */
.location-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 80px;
}

.location-text {
    flex: 1;
}

.location-text h2 {
    font-size: 28px;
    color: var(--brand-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: var(--brand-green);
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.location-text p {
    font-size: 17px;
    
    max-width: 500px;
}

.location-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.location-image img {
    width: 100%;
    max-width: 600px;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-section, .location-section {
        gap: 2rem;
    }

    .contact-image img {
        max-width: 100%;
    }

    .contact-form-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section, .location-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .contact-form-container {
        width: 100%;
        max-width: 100%;
    }

    .location-image {
        justify-content: center;
        width: 100%;
    }

    .location-text p {
        margin: 0 auto;
        max-width: 100%;
    }

    .location-text h2 {
        font-size: 22px;
    }

    /* Touch-friendly form inputs */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* prevents iOS zoom */
        padding: 12px;
        min-height: 44px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 16px;
        min-height: 44px;
    }

    .main-content {
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .intro-section {
        margin-bottom: 36px;
    }

    .contact-section {
        margin-bottom: 48px;
    }

    .location-section {
        margin-top: 48px;
    }
}

@media (max-width: 480px) {

    .main-content {
        padding-top: 16px;
        padding-bottom: 32px;
    }

    .page-title {
        font-size: 22px;
    }

    .intro-text {
        font-size: 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
