:root {
    --site-width: 1400px;
    --body-font-family: 'Poppins', sans-serif;
    --header-font-family: 'Poppins', sans-serif;
    --color-white: 255, 255, 255;
    --color-black: 0, 0, 0;
    --color-pink: 245, 149, 160;
    --color-pink-light: 248, 180, 185;
    --color-orange: 247, 148, 26;
    --color-yellow: 254, 243, 160;
    --color-blue: 0, 150, 163;
    --color-blue-dark: 0, 107, 116;
    --color-blue-light: 0, 178, 193;
    --color-cream: 254, 235, 215;
    --color-primary: 0, 0, 0;
    --color-headline: 0, 0, 0;
    --headerHeight: 60px;
    --h1-font-size: 42px;
    --h1-margin: 0 0 25px 0;
    --h2-font-size: 36px;
    --h2-margin: 0 0 15px 0;
}

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

html {
    font-size: 18px;
    line-height: 1.3;
}

body {
    font-family: var(--body-font-family);
    background-color: rgb(245, 149, 160);
    background-image: linear-gradient(to bottom, rgb(245, 149, 160), #fee9d6);
    padding-top: 70px;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background-color: #f8afb8;
    display: flex;
    left: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}

.header__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.header__logo {
    display: inline-block;
    padding: 5px;
    width: 30%;
    text-align: left;
}

.header__logo img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.header__nav-toggle {
    display: none;
    cursor: pointer;
    height: 40px;
    width: 50px;
    position: absolute;
    right: 20px;
    top: 10px;
}

.header__nav-toggle .inner {
    position: relative;
}

.header__nav-toggle .line {
    background: #fff;
    height: 4px;
    left: 10px;
    position: absolute;
    top: 6px;
    width: 30px;
    transition: 200ms all linear;
}

.header__nav-toggle .line-two {
    top: 16px;
}

.header__nav-toggle .line-three {
    top: 26px;
}

.header__nav-toggle.nav-open .line {
    background: rgb(0, 150, 163);
}

.header__nav-toggle.nav-open .line-one {
    transform: rotate(45deg);
    top: 11px;
}

.header__nav-toggle.nav-open .line-two {
    opacity: 0;
}

.header__nav-toggle.nav-open .line-three {
    transform: rotate(-45deg);
    top: 20px;
}

.header__nav {
    text-align: right;
    width: 70%;
}

.header__nav-list {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__nav-list li {
    display: inline-block;
    margin-right: 15px;
    padding-bottom: 5px;
}

.header__nav-list li a {
    color: rgb(0, 150, 163);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    background: #fff;
    padding: 12px 30px;
    border-radius: 5px;
}

.header__mobile-btns {
    display: none;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0096A3 0%, #00B2C1 50%, #00CED1 100%);
    min-height: 300px;
    padding: 80px 0 50px;
    position: relative;
    margin-top: 50px;
}

.footer__wrap {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
    align-items: top;
    flex-wrap: wrap;
}

.footer__col {
    flex: 1;
    text-align: left;
    padding: 20px;
    min-width: 200px;
}

.footer__logo {
    display: block;
    margin-bottom: 25px;
    text-align: center;
}

.footer__logo img {
    max-width: 200px;
    width: 100%;
}

.footer__address {
    text-align: center;
}

.footer__address h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer__address p,
.footer__address a {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer__branding {
    text-align: center;
}

.footer__branding svg {
    fill: white;
    width: 100px;
    height: 100px;
}

.footer__branding img {
    max-width: 280px;
    width: 100%;
}

.footer__social-icons {
    text-align: center;
    margin-bottom: 20px;
}

.footer__social-icon {
    display: inline-block;
    margin: 0 15px;
}

.footer__social-icon svg {
    width: 36px;
    height: 36px;
    fill: white !important;
}

.footer__links {
    text-align: center;
}

.footer__link {
    color: black;
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Shared */
@media (max-width: 991.96px) {
    .header__nav-toggle {
        display: block;
    }

    .header__nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: rgb(235, 234, 232);
        padding: 20px;
        text-align: left;
    }

    .header__nav.nav-open {
        display: block;
    }

    .header__nav-list {
        display: flex;
        flex-direction: column;
    }

    .header__nav-list li {
        display: block;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .header__nav-list li a {
        color: #000;
        font-size: 24px;
        background: transparent;
        padding: 10px 0;
    }

    .header__mobile-btns {
        display: flex;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .header__mobile-btns a {
        flex: 1;
        text-align: center;
        padding: 15px 0;
        font-size: 18px;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: bold;
    }

    .header__mobile-btns a:first-child {
        background: rgb(254, 243, 160);
        color: rgb(0, 150, 163);
    }

    .header__mobile-btns a:last-child {
        background: rgb(0, 150, 163);
        color: white;
    }

    .header__logo {
        width: 60%;
        max-width: 240px;
    }

    .footer__wrap {
        flex-direction: column;
        text-align: center;
    }

    .footer__col {
        text-align: center;
    }
}

/* Go Back Button Styles */
.btn-go-back {
    display: inline-flex;
    align-items: center;
    background-color: rgb(0, 150, 163);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgb(0, 150, 163);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 150, 163, 0.2);
    margin-bottom: 30px;
    margin-top: 100px; /* Lowered even more */
    align-self: flex-start; /* Ensure it stays on the left */
    min-height: 44px; /* Ensure minimum height for touch */
}

.btn-go-back:hover {
    background-color: #fff;
    color: rgb(0, 150, 163);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 163, 0.3);
}

.btn-go-back svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (min-width: 1200px) {
    .container {
        position: relative;
    }
}

/* General Mobile Improvements */
@media (max-width: 768px) {
    html {
        font-size: 16px; /* Slightly smaller base font for mobile */
    }

    body {
        padding-top: 60px; /* Adjust for mobile header height */
    }

    .header__logo {
        width: 50%;
    }

    .header__logo img {
        max-width: 180px;
    }

    /* Buttons optimization for touch */
    .header__mobile-btns a,
    .btn-go-back,
    a, button {
        min-height: 44px;
    }

    /* Footer adjustments */
    .footer {
        padding: 60px 0 30px;
    }

    .footer__link {
        font-size: 18px;
        padding: 10px 15px;
    }

    .footer__col {
        padding: 15px;
    }
}
