:root {

    --site-max-width: 1364px;
    --container-padding: 24px;

    --font-heading: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --font-body: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;

    --color-primary: #009BB4;
    --color-primary-hover: #009cb4ce;
    --colormuted: #ECEBEC;
    --color-text: #000000;

}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body, "Segoe UI", system-ui, sans-serif);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--colormuted);
    overflow-x: hidden;
}

.pg-header {
    width: 100%;
    align-content: end;
    /* border: 1px solid red; */
    height: 514px;
    background-image: url("/assets/img/f08fe84df5931872ba4534eef2ec504e327a4c40.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0 10px;
}

.inner {
    max-width: var(--site-max-width);
    margin: auto;
    /* border: 1px solid red; */
}

.pg-header h1 {
    color: var(--colormuted);
    font-family: var(--font-heading);
    font-weight: 900;
    font-style: italic;
    font-size: 68px;
    letter-spacing: -2px;
    text-transform: uppercase;
    line-height: 48px;

}

.pg-header-para {
    width: 100%;
    align-content: center;
    /* border: 1px solid red; */
    height: 173px;
    padding: 0 10px;
    background: #fff;
}

.pg-para-inner {
    max-width: var(--site-max-width);
    /* border: 1px solid red; */
    margin: auto;
}

.pg-para-inner p {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-body);
    width: 60%;
    margin-top: 14px;

}

.wtm-main {
    width: 100%;
    background-color: #fff;
    /* border: 1px solid red; */
    padding: 100px 0 100px;
}

.wtm-inner {
    max-width: var(--site-max-width);
    margin: auto;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    padding: 20px;
    /* border: 1px solid red; */
}

.wtm-col-1 {
    /* border: 1px solid red; */
    width: 50%;
}

.wtm-col-1 h1 {
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 48.26px;
    line-height: 54px;
}

.wtm-col-1 p {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-body);
    margin: 20px 0 20px;
}

.wtm-col-2 {
    /* border: 1px solid red; */
    width: 50%;
}

.wtm-col-2 img {
    width: 100%;
}


.faq-container {
    width: 100%;
    padding: 20px;
}

.faq-inner {
    width: var(--site-max-width);
    margin: 40px auto;
}

.faq-title {
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 42.26px;
    line-height: 54px;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-top: 1px solid #eee;
    transition: background 0.2s;
}

.faq-item:last-child {
    border-bottom: 1px solid #eee;
}

.faq-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
    cursor: pointer;
    background: #e7e6e7;
    transition: background 0.3s;
    gap: 12px;
}

.faq-number {
    font-weight: bold;
    flex-shrink: 0;
    text-align: center;
    background: #e0dfe0;
    border-right: 2px solid #cac9ca;
    line-height: 60px;
    width: 5%;
    height: -webkit-fill-available;
}

.faq-question {
    flex: 1;
    font-size: 15px;
    color: #333;
    line-height: 60px;
}

.faq-toggle {
    color:#ADADAD;
    font-size: 22px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    position: absolute;
    right: 10px;
    top: 10px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #e7e6e7;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 14px;
    color: #444;
}

.faq-item.active .faq-content {
    max-height: 300px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

label {
    margin-bottom: 8px;
    font-size: 15px;
    color: #111;
}

input,
textarea {
    border: none;
    border-bottom: 1px solid #555;
    padding: 8px 0;
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    background: transparent;
    resize: none;
    color: #000;
}

input:focus,
textarea:focus {
    border-bottom: 1px solid #007a94;
}


.send-btn {
    background-color: #0094b5;
    color: white;
    font-size: 16px;
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    transition: background 0.3s;
    width: 180px;
}

.send-btn:hover {
    background-color: #007a94;
}



@media screen and (max-width: 768px) {

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

    .wtm-inner {
        display: block;
        padding: 10px;
        justify-items: center;

    }

    .wtm-col-2 img,
    .faq-inner {
        width: 100%;
    }

    .wtm-col-2 {
        width: 100%;
        text-align: center;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-toggle {
        font-size: 20px;
    }

    .faq-content {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .faq-title {
        font-size: 20px;
    }

    .send-btn {
        width: 100%;
    }

    .faq-number {
        width: 24px;
        font-size: 13px;
    }

    .faq-question {
        font-size: 13px;
    }

    .wtm-inner {
        display: block;
        padding: 10px;
        justify-items: center;

    }

    .wtm-col-2 img,
    .faq-inner {
        width: 100%;
    }

    .wtm-col-2,
    .wtm-col-1 {
        width: 90%;
        text-align: center;
    }

    .faq-toggle {
        font-size: 18px;
    }
}


@media (max-width: 1024px) {


    .wtm-inner {
        display: block;
        padding: 10px;
        justify-items: center;

    }

    .wtm-col-2 {
        width: 100%;
        text-align: start;
    }



    .wtm-col-2 img,
    .pg-header-para p,
    .faq-inner {
        width: 100%;
    }

}

