.elementor-19 .elementor-element.elementor-element-0beba54{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-19 .elementor-element.elementor-element-460b4af{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-19 .elementor-element.elementor-element-5e1ebfc4{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19 .elementor-element.elementor-element-ae7bf86{margin:-8px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}body.elementor-page-19:not(.elementor-motion-effects-element-type-background), body.elementor-page-19 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}body.elementor-page-19{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-460b4af *//* CSS for the Responsive Navigation Menu */

/* --- Global Styles & Variables (Required for the Menu) --- */
:root {
    --serenity-blue: #005A9C;
    --sunrise-orange: #F58220;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

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

/* --- Navigation Header --- */
.site-header {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 80px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--serenity-blue);
    font-weight: 700;
    font-size: 1.5rem; /* Increased from 1rem */
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

/* Orange underline for active and hover states */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--sunrise-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.main-nav a:hover::after,
.current-menu-item a::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 22px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--serenity-blue);
    border-radius: 3px;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

/* Hamburger 'X' animation */
.nav-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}
.nav-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* --- Responsive Design for the Menu --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .main-nav ul {
        display: none; /* Hide nav by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .main-nav.nav-open ul {
        display: flex; /* Show nav when class is added */
    }
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    .main-nav a {
        padding: 1rem 0;
        display: block;
    }
    .main-nav a::after {
        bottom: 0.75rem; /* Adjust underline position for mobile */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ae7bf86 *//* --- Global Styles & Variables --- */
:root {
    --serenity-blue: #005A9C;
    --sunrise-orange: #F58220;
    --black: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f4f4f4;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--black);
}

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

h1, h2, h3 {
    font-weight: 700;
    color: var(--serenity-blue);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #555;
}

section {
    padding: 80px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid transparent;
    margin: 5px;
}

.btn-primary {
    background-color: var(--sunrise-orange);
    color: var(--white);
    border-color: var(--sunrise-orange);
}

.btn-primary:hover {
    background-color: #e07010;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--serenity-blue);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--serenity-blue);
    border-color: var(--serenity-blue);
}

.btn-outline:hover {
    background-color: var(--serenity-blue);
    color: var(--white);
    transform: translateY(-2px);
}


/* --- 1. Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: url('https://ufq.aml.mybluehost.me/website_4ebd6cd1/wp-content/uploads/2025/09/layout_orig.jpg') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 50, 90, 0.6); /* Dark blue overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    color: var(--white);
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}


/* --- 2. "Welcome to Serenity" Section --- */
.welcome-section {
    background-color: var(--light-gray);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.welcome-text {
    flex: 1;
}

.welcome-image {
    flex: 1;
}

.welcome-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.key-benefits {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-item svg {
    color: var(--serenity-blue);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* --- 3. "Discover Your Lifestyle" Section --- */
.lifestyle-section {
    background-color: var(--white);
}

.lifestyle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-top: 0;
}

.learn-more {
    color: var(--sunrise-orange);
    text-decoration: none;
    font-weight: 700;
}


/* --- 4. NEW "Helpful Resources" Section --- */
.resources-section {
    background-color: var(--light-gray);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.resource-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.resource-item svg {
    color: var(--serenity-blue);
    margin-bottom: 1rem;
}

.resource-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* --- 5. Final Call-to-Action Section --- */
.final-cta-section {
    background-color: var(--serenity-blue);
    color: var(--white);
    text-align: center;
}

.final-cta-section h2 {
    color: var(--white);
}

.final-cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* --- Footer --- */
.footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 20px;
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .welcome-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
        margin-bottom: 1rem; /* Adjusted for mobile */
    }
    section {
        padding: 60px 0;
    }
    .key-benefits {
        flex-direction: column;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
}/* End custom CSS */