body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #DDF4E7, #f0f9f3);
    color: #1a1a1a;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    padding-right: 20px;
}

.hero-left h1 {
    font-size: 3rem;
    margin: 0 0 20px 0;
    font-weight: 800;
    color: #124170;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    line-height: 1.6;
    color: #26667F;
}

.info-tags {
    font-size: 1rem;
    margin: 0 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-tags span {
    display: inline-block;
    background: #DDF4E7;
    border: 1px solid #67C090;
    color: #26667F;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #67C090, #26667F);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(103, 192, 144, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(103, 192, 144, 0.6);
}

.hero-right {
    flex: 1;
    max-width: 480px;
    text-align: center;
    padding-left: 20px;
}

.hero-right img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.hero-right img:hover {
    transform: scale(1.05);
}

/* Floating cubes background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    animation: floatAll 10s infinite ease-in-out;
}

.cube {
    position: absolute;
    background: rgba(103, 192, 144, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: floatRotate 6s ease-in-out infinite;
}

.cube:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
}

.cube:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 15%;
}

.cube:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 20%;
    right: 10%;
}

.cube:nth-child(4) {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 30%;
}

.cube:nth-child(5) {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 20%;
}

.countdown-timer {
    font-size: 1.2rem;
    font-weight: bold;
    color: #124170;
    background: #DDF4E7;
    border: 2px solid #67C090;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 8px;
    margin: 0 0 20px 0;
    box-shadow: 0 4px 10px rgba(103, 192, 144, 0.3);
}

.circle-highlight {
    position: relative;
    font-weight: bold;
    z-index: 1;
}

.circle-highlight::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 10px);
    border: 3px solid #67C090;
    border-radius: 50%;
    z-index: -1;
    transform: rotate(-5deg);
}

.price-highlight {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: #fff !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    border: 2px solid #DDF4E7 !important;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4) !important;
    animation: pulse 1.5s infinite;
}

/* Certifications Section */
.certification-section {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    margin: 40px 20px;
    font-family: 'Inter', sans-serif;
    border: 3px dotted #67C090;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(103, 192, 144, 0.2);
}

.certification-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #124170;
    margin: 0 0 20px 0;
}

.certification-logos {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px 0;
}

.certification-logos img {
    max-height: 60px;
    width: auto;
}

/* Results Section */
.results-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 20px;
    margin: 0;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.results-content {
    flex: 1;
    max-width: 600px;
}

.results-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #124170;
    margin: 0 0 30px 0;
}

.result-highlight {
    background: linear-gradient(135deg, #67C090, #26667F);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin: 0 0 30px 0;
    box-shadow: 0 10px 30px rgba(103, 192, 144, 0.3);
}

.result-highlight h3 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.growth-numbers {
    color: #DDF4E7;
    font-size: 2.2rem;
    font-weight: 900;
    display: block;
    margin: 10px 0 0 0;
}

.result-highlight p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.results-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.results-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.results-image img:hover {
    transform: scale(1.05);
}

/* Learn Section */
.learn-section {
    background: white;
    padding: 60px 20px;
    text-align: center;
    margin: 0;
}

.learn-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #124170;
    margin: 0 0 16px 0;
}

.learn-section p.subhead {
    font-size: 1.125rem;
    color: #26667F;
    max-width: 720px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-align: left;
}

.card:hover {
    background: #DDF4E7;
    box-shadow: 0 8px 20px rgba(103, 192, 144, 0.2);
    transform: translateY(-8px) scale(1.03);
}

.card .details {
    max-height: 0;
    overflow: hidden;
    font-size: 0.875rem;
    color: #26667F;
    margin: 10px 0 0 0;
    transition: max-height 0.4s ease;
    line-height: 1.5;
}

.card:hover .details {
    max-height: 200px;
}

.card h3 {
    font-size: 1.125rem;
    color: #67C090;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.card p {
    font-size: 0.9375rem;
    color: #26667F;
    margin: 0;
}

/* Section CTA styling */
.section-cta {
    margin: 40px 0 0 0;
    text-align: center;
}

/* Value Add-Ons Section */
.value-addons-section {
    background: linear-gradient(135deg, #124170, #26667F);
    padding: 60px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.value-addons-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(103, 192, 144, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.value-addons-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.value-addons-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 40px 0;
    color: #DDF4E7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 0 0 40px 0;
}

.addon-card {
    background: rgba(221, 244, 231, 0.1);
    border: 2px solid #67C090;
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    text-align: left;
}

.addon-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #DDF4E7;
    box-shadow: 0 20px 40px rgba(103, 192, 144, 0.3);
}

.addon-icon {
    font-size: 3rem;
    margin: 0 0 20px 0;
    display: inline-block;
    animation: bounce 2s infinite;
}

.addon-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #DDF4E7;
}

.addon-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(221, 244, 231, 0.9);
    margin: 0;
}

.addon-card strong {
    color: #67C090;
}

.urgency-text {
    background: rgba(103, 192, 144, 0.2);
    border: 2px dashed #67C090;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    font-size: 1.1rem;
}

.urgency-text p {
    margin: 0;
}

.urgency-text strong {
    color: #DDF4E7;
    font-weight: 800;
}

.spots-counter {
    background: linear-gradient(135deg, #67C090, #DDF4E7);
    color: #124170;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(103, 192, 144, 0.4);
    animation: pulse 2s infinite;
    margin: 0 0 20px 0;
}

#spots-remaining {
    font-size: 2rem;
    color: #124170;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Trainer Section */
.trainer-section {
    background: #fff;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0;
}

.trainer-image {
    max-width: 450px;
    flex: 1;
    text-align: center;
}

.trainer-image img {
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(103, 192, 144, 0.3);
    transition: transform 0.4s ease;
}

.trainer-image img:hover {
    transform: scale(1.05);
}

.trainer-content {
    flex: 1;
    max-width: 600px;
    color: #124170;
}

.trainer-content h2 {
    font-size: 1.875rem;
    margin: 0 0 16px 0;
    color: #124170;
    font-weight: 700;
}

.trainer-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
    color: #26667F;
}

.trainer-content p:last-of-type {
    margin-bottom: 0;
}

.trainer-content p strong {
    color: #124170;
}

/* Transformation Section */
.transformation-section {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
    margin: 0;
}

.transformation-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #124170;
}

.transformation-section h3 {
    font-size: 2.125rem;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: #26667F;
}

.before-after-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 0 0 40px 0;
}

.column {
    border: 2px solid #67C090;
    border-radius: 16px;
    padding: 20px;
    max-width: 400px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(103, 192, 144, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.column img {
    width: 100%;
    border-radius: 12px;
    margin: 0 0 20px 0;
    transition: transform 0.4s ease;
}

.column img:hover {
    transform: scale(1.05);
}

.column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.column ul li {
    padding: 12px 0;
    border-bottom: 1px dashed #67C090;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: #26667F;
}

.column ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.column ul li span {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Section Wrapper */
.section-wrapper {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #DDF4E7, #f0f9f3);
    margin: 0;
}

.section-wrapper h2 {
    font-size: 2.25rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: #124170;
}

.section-wrapper p {
    font-size: 1.125rem;
    color: #26667F;
    margin: 0 0 50px 0;
    line-height: 1.6;
}

.section-wrapper p:last-of-type {
    margin: 40px 0 0 0;
    font-size: 1rem;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 0 40px 0;
}

.cards-container .card {
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 0 0 2px #67C090;
    padding: 30px;
    width: 280px;
    text-align: left;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cards-container .card:hover {
    background-color: #DDF4E7;
    color: #124170;
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(103, 192, 144, 0.2);
}

.card-icon {
    font-size: 2rem;
    margin: 0 0 15px 0;
}

.card-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 0 10px 0;
    color: #124170;
}

.card-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #26667F;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin: 0 0 40px 0;
    color: #124170;
    font-weight: 700;
}

.faq-item {
    background: #fff;
    border: 2px solid #67C090;
    border-radius: 12px;
    margin: 0 0 15px 0;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 18px 20px;
    background: linear-gradient(135deg, #67C090, #26667F);
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    margin: 0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.375rem;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 16px 20px;
    background-color: #DDF4E7;
    color: #124170;
    font-size: 1rem;
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #67C090, #26667F);
    color: #fff;
    text-align: center;
    padding: 14px;
    font-weight: bold;
    font-size: 1rem;
    z-index: 1000;
    border: none;
    cursor: pointer;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    display: block;
}

/* Register button specific styling */
.register-btn {
    transition: all 0.3s ease;
}

.register-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(103, 192, 144, 0.6);
    text-decoration: none;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatAll {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(8deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(103, 192, 144, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(103, 192, 144, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(103, 192, 144, 0.4);
    }
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
        padding: 0;
    }

    .hero-left h1 {
        font-size: 2.4rem;
    }

    .info-tags {
        justify-content: center;
    }

    .certification-section {
        padding: 30px 15px;
        margin: 20px 15px;
    }

    .certification-section h2 {
        font-size: 1.5rem;
    }

    .certification-logos {
        flex-direction: column;
        gap: 15px;
    }

    .results-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .results-content {
        max-width: 100%;
    }

    .results-content h2 {
        font-size: 2rem;
    }

    .value-addons-section h2 {
        font-size: 2rem;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-card {
        text-align: center;
        padding: 20px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .before-after-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cards-container .card {
        width: 100%;
        max-width: 320px;
    }

    .trainer-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .trainer-content {
        max-width: 100%;
    }

    .trainer-content h2 {
        font-size: 1.5rem;
    }

    .transformation-section h2 {
        font-size: 1.5rem;
    }

    .transformation-section h3 {
        font-size: 1.75rem;
    }

    .section-wrapper h2 {
        font-size: 1.875rem;
    }

    .faq-section {
        padding: 40px 15px;
        margin: 0 15px;
    }

    .faq-section h2 {
        font-size: 1.875rem;
    }

    /* Ensure proper spacing on mobile */
    .section-cta {
        margin: 30px 0 0 0;
    }

    .sticky-cta {
        padding: 12px;
        font-size: 0.9rem;
    }
}