/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
    text-shadow: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-link {
    background: none;
    border: none;
    color: #2c3e50;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: none;
}

.nav-link:hover {
    background: rgba(52, 73, 94, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: #e74c3c;
    color: #fff;
    transform: translateY(-2px);
}

/* Page System */
.page {
    display: none;
    padding-top: 80px;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #34495e;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #34495e;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.highlight {
    color: #e74c3c;
    font-weight: 800;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/gym-hero-new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.special-offer {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.special-offer h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.ai-feature h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.membership-section h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pricing-highlight {
    margin: 1.5rem 0;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-small {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-left: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.features-list {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.feature {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.amazon-offer {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.amazon-offer h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.amazon-offer p {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button.primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.cta-button.tertiary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.cta-button.quaternary {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.cta-button.ai-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    font-size: 1.3rem;
    padding: 20px 40px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 20px 40px;
}

.cta-button.small {
    font-size: 0.9rem;
    padding: 10px 20px;
}

.guarantee {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #fff;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.features-section p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.awards {
    text-align: center;
    margin: 3rem 0;
}

.awards h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #e74c3c;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.awards h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.award-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.award {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.award h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.award p {
    font-size: 1rem;
    font-weight: 600;
    color: #34495e;
}

.key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1.5rem 0 0.5rem 0;
}

.small-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 2rem 0 1rem 0;
}

.about-text p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.about-text li {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.about-text strong {
    font-weight: 700;
    color: #2c3e50;
}

.facility-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Coach Section */
.coach-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.coach-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.coach-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.coach-bio h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.coach-bio h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 2rem;
}

.coach-bio h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.coach-bio p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.coach-bio ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.coach-bio li {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.coach-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: #fff;
}

.services-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: #e74c3c;
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.price-note {
    font-size: 1rem;
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.service-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.service-card li {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.additional-services {
    margin-top: 4rem;
}

.additional-services h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.service-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category {
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.read-time,
.date {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.blog-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.blog-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Move-to-Earn Section */
.move-to-earn-section {
    padding: 4rem 0;
    background: #fff;
}

.section-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.program-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
}

.program-header {
    text-align: center;
    margin-bottom: 2rem;
}

.program-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.launching {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.badge.crypto {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.badge.education {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    text-align: center;
    margin-bottom: 1.5rem;
}

.program-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features {
    margin: 2rem 0;
}

.features .feature {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.early-bird,
.pricing {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.early-bird h4,
.pricing h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing ul {
    list-style: none;
    margin: 1rem 0;
}

.pricing li {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.pricing li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.availability {
    text-align: center;
    margin: 1.5rem 0;
}

.availability p {
    font-size: 1rem;
    font-weight: 600;
    color: #27ae60;
}

/* GLP1 Section */
.glp1-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    font-weight: 500;
    color: #34495e;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.glp1-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.product-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.product-features {
    display: grid;
    gap: 2rem;
}

.feature-group {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-group h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-group ul {
    list-style: none;
    margin: 1rem 0;
}

.feature-group li {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.supplement-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.community-section {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    margin: 3rem 0;
}

.community-section h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.community-section p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 2rem;
}

.community-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.community-note {
    font-size: 1rem;
    font-weight: 600;
    color: #e74c3c;
    margin: 1rem 0;
}

.wellness-approach {
    margin: 3rem 0;
}

.wellness-approach h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.pillar {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.pillar h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pillar p {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
}

.disclaimer {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.disclaimer p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7f8c8d;
    margin: 0;
}

/* Book Section */
.book-section {
    padding: 4rem 0;
    background: #fff;
}

.consultation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.consultation-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    position: relative;
}

.consultation-card .badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.badge.free {
    background: #27ae60;
    color: white;
}

.badge.paid {
    background: #e74c3c;
    color: white;
}

.consultation-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.consultation-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 2rem;
    text-align: center;
}

.consultation-card .features {
    margin: 2rem 0;
}

.consultation-card .feature {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.payment-info {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #ffc107;
}

.warning {
    font-size: 1rem;
    font-weight: 600;
    color: #856404;
    margin-bottom: 0.5rem;
}

.payment-info p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #856404;
    margin: 0;
    text-align: left;
}

.ai-form-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
}

.ai-form-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.ai-form-section p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #34495e;
    text-align: center;
    margin-bottom: 2rem;
}

.consultation-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e74c3c;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: #fff;
}

.gallery-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Financial Freedom Section */
.financial-freedom-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.program-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.course-library {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.course-library h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.course-library ul {
    list-style: none;
    margin: 1rem 0;
}

.course-library li {
    font-size: 1rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.course-library li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.bonus-section {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

.bonus-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.bonus-section ul {
    list-style: none;
    margin: 1rem 0;
}

.bonus-section li {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.bonus-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.standalone-option {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
}

.standalone-option h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 1rem;
}

.standalone-option p {
    font-size: 1rem;
    font-weight: 500;
    color: #856404;
    margin: 0;
}

/* Community Section */
.community-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.community-section h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.community-section .section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.community-section .section-description {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.lead-magnet {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
}

.lead-magnet h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.lead-magnet p {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.resource {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.fine-print {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
}

.social-section {
    text-align: center;
    margin: 3rem 0;
}

.social-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.social-button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.community-benefits {
    margin: 4rem 0;
}

.community-benefits h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.benefit {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.benefit h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.benefit p {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: #fff;
}

.testimonials-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #34495e;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 1rem;
    font-weight: 500;
    color: #7f8c8d;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-section p {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-link {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: left;
    padding: 0;
}

.footer-link:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page {
        padding-top: 180px; /* Increased padding to prevent content from being cut off */
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 5px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 10px;
        margin-bottom: 5px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .special-offer h2 {
        font-size: 1.8rem;
    }
    
    .ai-feature h3 {
        font-size: 1.5rem;
    }
    
    .membership-section h2 {
        font-size: 1.7rem;
    }
    
    .price-large {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .consultation-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .community-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page {
        padding-top: 220px; /* Even more padding for smaller screens */
    }
    
    .navbar {
        padding: 0.3rem 0;
    }
    
    .logo {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        gap: 1px;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 4px 6px;
        margin-bottom: 3px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .special-offer h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px 24px;
        margin: 5px;
    }
    
    .cta-button.large {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
}



/* Coach Chey AI Page Styles */
.coach-ai-hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
    text-align: center;
}

.coach-ai-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.ai-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ai-features h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.ai-pricing {
    padding: 4rem 0;
    background: white;
}

.ai-pricing h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.trial {
    border: 3px solid #27ae60;
}

.pricing-card.premium {
    border: 3px solid #f39c12;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.trial-badge {
    background: #27ae60;
    color: white;
}

.premium-badge {
    background: #f39c12;
    color: white;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.card-header p {
    font-size: 1rem;
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.price-section {
    text-align: center;
    margin: 2rem 0;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.price-after {
    font-size: 1.1rem;
    font-weight: 600;
    color: #7f8c8d;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.trial-button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.trial-button:hover {
    background: #229954;
    transform: translateY(-2px);
}

.premium-button {
    background: #f39c12;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.premium-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.trial-note {
    font-size: 0.9rem;
    font-weight: 600;
    color: #7f8c8d;
    text-align: center;
    margin-top: 0.5rem;
}

.ai-benefits {
    padding: 4rem 0;
    background: #f8f9fa;
}

.ai-benefits h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    font-weight: 600;
    color: #7f8c8d;
    line-height: 1.6;
}

.ai-image-section {
    text-align: center;
    margin-top: 3rem;
}

.ai-coach-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Bonus note styling */
.bonus-note {
    font-size: 0.9rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Award images styling */
.award-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.award-badge {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.award-badge:hover {
    transform: scale(1.05);
}

/* InBody image styling */
.inbody-image {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coach-ai-hero h1 {
        font-size: 2.2rem;
    }
    
    .ai-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}


/* Facility logo styling */
.facility-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* Small facility logo styling */
.facility-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.facility-logo-small {
    max-width: 80px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* AI Robot icon styling */
.ai-robot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.ai-robot-icon {
    max-width: 60px;
    width: 100%;
    height: auto;
    opacity: 0.9;
}


/* Large input styling for Join Our Community */
.large-input {
    padding: 20px !important;
    font-size: 18px !important;
    height: 60px !important;
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    width: 100% !important;
    margin-bottom: 15px !important;
}

.large-input:focus {
    border-color: #e74c3c !important;
    outline: none !important;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3) !important;
}


/* pHix Video Call to Action */
.video-cta {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
    text-align: center;
}

.video-cta h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.video-cta p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.phix-images {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.phix-promo {
    max-width: 800px;
    margin: 0 auto;
}

.phix-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

