/* ------------------------------ */
/* Global Styles                  */
/* ------------------------------ */

body {
    margin: 0;
    padding: 0;
}



.services-header {
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.services-header h1 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.services-header p {
    color: white;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
}

/* ------------------------------ */
/* Service Sections (Mobile First)*/
/* ------------------------------ */

.service {
    background: #FCCF1E;
    margin: 10px 10px auto;
    padding: 20px;
    max-width: 650px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.service-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #ddd; /* placeholder */
}

.service-content {
    margin-top: 15px;
}

.service-content h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-content p {
    line-height: 1.6;
    text-align: justify;
}

/* ------------------------------ */
/* Desktop / Larger Screens       */
/* ------------------------------ */

@media (min-width: 768px) {

    .service {
        display: flex;
        margin:20px auto;
        align-items: center;
        gap: 25px;
        padding: 30px;
        max-width: 900px;
    }

    .service:nth-child(even) {
        flex-direction: row-reverse; /* alternating layout */
    }

    .service-img, 
    .service-content {
        flex: 1;
    }

    .service-content h2 {
        font-size: 1.6rem;
    }
}

.inquiry-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inquiry-form h2 {
    text-align: center;
    margin-bottom: 5px;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.inquiry-form button {
    background-color: #FCCF1E;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: "body";
    font-size: large;
    color: #2E338B;
    margin: 0 auto;
}

.inquiry-form button:hover {
    background: #2E338B;
    color: #FCCF1E;
}