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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2596be 0%, #1e7ba8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.nav-logo h2 {
    color: #2596be;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 12px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2596be;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2596be;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2596be;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2596be 0%, #1e7ba8 100%);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(45deg, #fff, #e0e6ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content */
.main-content {
    padding: 100px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 2.8rem;
    color: #2596be;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.content-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #666;
}

.content-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e0e6ed;
}

.visual-card i {
    font-size: 3rem;
    color: #2596be;
    margin-bottom: 20px;
}

.visual-card h4 {
    font-size: 1.3rem;
    color: #2596be;
    margin-bottom: 15px;
}

.visual-card p {
    color: #666;
    font-size: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: #2596be;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2596be 0%, #1e7ba8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-color: #2596be;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2596be 0%, #1e7ba8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #2596be;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: #2596be;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.benefit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    background: #e3f2fd;
    color: #2596be;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Expert Care Section */
.expert-care {
    padding: 100px 0;
    background: linear-gradient(135deg, #2596be 0%, #1e7ba8 100%);
    color: white;
}

.expert-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.expert-info h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.expert-info p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.expert-credentials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.credential i {
    font-size: 1.2rem;
    color: #ffd700;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-intro {
    font-size: 1.3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 80px;
    line-height: 1.8;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #2596be;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2596be 0%, #1e7ba8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #2596be;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.feature-highlight {
    background: #e3f2fd;
    color: #2596be;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background: white;
}

.waitlist-intro {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    line-height: 1.8;
    color: #666;
}

.waitlist-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-10px);
    border-color: #2596be;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2596be 0%, #1e7ba8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: #2596be;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.4rem;
    color: #2596be;
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.waitlist-form {
    background: #f8f9fa;
    padding: 60px 50px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-header h3 {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e6ed;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #2596be;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.waitlist-benefits {
    text-align: center;
}

.waitlist-benefits h3 {
    font-size: 1.8rem;
    color: #2596be;
    margin-bottom: 40px;
    font-weight: 700;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.benefit-item i {
    font-size: 1.5rem;
    color: #2596be;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #2596be;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
}

.disclaimer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e6ed;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #e0e6ed;
}

.contact-item i {
    font-size: 1.3rem;
    color: #ffd700;
    width: 20px;
}

.email-button {
    background: linear-gradient(135deg, #2596be 0%, #1e7ba8 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.email-button i {
    font-size: 1rem;
    color: white;
}

/* Captcha Styling */
.captcha-group {
    position: relative;
    margin-bottom: 20px;
}

.captcha-group label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

#captcha-question {
    font-weight: 700;
    color: #2596be;
    font-size: 1.1rem;
}

.captcha-group input {
    width: calc(100% - 50px);
    padding: 15px 20px;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    display: inline-block;
}

.captcha-group input:focus {
    outline: none;
    border-color: #2596be;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.captcha-refresh {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #f8f9fa;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2596be;
}

.captcha-refresh:hover {
    background: #2596be;
    color: white;
    border-color: #2596be;
    transform: translateY(-50%) rotate(180deg);
}

.captcha-refresh i {
    font-size: 1rem;
}

/* Visual Elements Styling */
.tpe-process-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-image {
    text-align: center;
}

.process-diagram {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.process-diagram:hover {
    transform: scale(1.02);
}

.process-description h3 {
    font-size: 1.8rem;
    color: #2596be;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-description p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
}

.microplastics-visual {
    margin: 30px 0;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.microplastics-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.microplastics-image:hover {
    transform: scale(1.05);
}

.visual-caption h4 {
    font-size: 1.3rem;
    color: #2596be;
    margin-bottom: 10px;
    font-weight: 700;
}

.visual-caption p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.treatment-experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.treatment-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.treatment-image:hover {
    transform: scale(1.02);
}

.experience-description h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.experience-description p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* TPE Steps Styling */
.tpe-steps {
    margin-top: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.tpe-steps h4 {
    font-size: 1.5rem;
    color: #2596be;
    margin-bottom: 25px;
    font-weight: 700;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.step-item .step-number {
    width: 40px;
    height: 40px;
    background: #2596be;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.2rem;
    color: #2596be;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.session-info {
    margin-top: 20px;
    padding: 20px;
    background: rgba(37, 150, 190, 0.1);
    border-radius: 10px;
    border-left: 4px solid #2596be;
}

.session-info p {
    font-size: 1.1rem;
    color: #2596be;
    margin: 0;
    font-weight: 600;
}

/* Conditions Section */
.conditions {
    padding: 100px 0;
    background: #f8f9fa;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.condition-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.condition-category:hover {
    transform: translateY(-5px);
    border-color: #2596be;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.condition-category h3 {
    font-size: 1.4rem;
    color: #2596be;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #2596be;
    padding-bottom: 10px;
}

.condition-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition-category li {
    padding: 8px 0;
    font-size: 1rem;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.condition-category li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2596be;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Credential Logos */
.credential-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
}

.footer-note {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #4a6fa5;
}

.footer-note p {
    font-size: 1.2rem;
    color: #e0e6ed;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .content-wrapper,
    .expert-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .waitlist-steps {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header h2,
    .main-content h2,
    .benefits h2,
    .expert-care h2,
    .features h2,
    .waitlist h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .benefit-card,
    .feature-card,
    .waitlist-form {
        padding: 30px 20px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .tpe-process-visual,
    .treatment-experience {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .microplastics-visual {
        margin: 20px 0;
        padding: 20px;
    }
}
