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

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333333; /* CHANGED: Dark grey for body text */
    background: #fff;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

/* Announcement Bar */
.announcement {
    background: linear-gradient(90deg, #FF7F2A 0%, #FF7F2A 100%); /* CHANGED: Orange for urgency */
    padding: 15px 0;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Header - CHANGED: Deep water blue background with white text */
header {
    background: #0A6C9C; /* CHANGED: Deep water blue */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(10, 108, 156, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.logo-highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}



.logo {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
    }
}


/* Navigation Styles */
.nav-container {
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    gap: 10px;
}

nav a {
    color: #fff; /* CHANGED: White text */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

nav a:hover, nav a.active {
    color: #4ABF9F; /* CHANGED: Mint-green */
    background: rgba(74, 191, 159, 0.1);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    color: #4ABF9F; /* CHANGED: Mint-green */
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.header-cta {
    background: #FF7F2A; /* CHANGED: Orange accent */
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #e66f20; /* CHANGED: Slightly darker orange */
    color: #000;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #4ABF9F; /* CHANGED: Mint-green */
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section - CHANGED: Water blue/teal visuals */
.hero {
    background: linear-gradient(135deg, #0A6C9C 0%, #1a4d6e 100%); /* CHANGED: Deep water blue */
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(74, 191, 159, 0.2) 0%, transparent 70%); /* CHANGED: Mint-green highlight */
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: #4ABF9F; /* CHANGED: Mint-green */
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 68px;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.hero .subtitle {
font-size: 24px;
margin-bottom: 35px;
font-weight: 400;
max-width: 800px;
margin-left: auto;
margin-right: auto;
color: #d1f2eb; /* Light mint-green tint for better visibility and thematic consistency */
}

.cta-primary {
    display: inline-block;
    background: #FF7F2A; /* CHANGED: Orange accent */
    color: #000;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 127, 42, 0.4);
}

.cta-primary:hover {
    background: #e66f20; /* CHANGED: Slightly darker orange */
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 127, 42, 0.6);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    font-size: 15px;
    font-weight: 600;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features .icon {
    color: #4ABF9F; /* CHANGED: Mint-green */
    font-size: 20px;
}

/* Trust Bar - CHANGED: Consistent blue circle icons */
.trust-bar {
    background: #F4F4F4; /* CHANGED: Light grey */
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-badge-icon {
    width: 70px;
    height: 70px;
    background: #0A6C9C; /* CHANGED: Deep water blue circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(10, 108, 156, 0.3);
}

.trust-badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

/* WHO Standards Section - CHANGED: Mint-green highlight boxes */
.who-standards {
    padding: 80px 0;
    background: #fff; /* CHANGED: White background */
    color: #333333;
}

.who-standards h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.who-standards h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.who-standards .subtitle {
    text-align: center;
    font-size: 18px;
    color: #255;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.who-item {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #4ABF9F; /* CHANGED: Mint-green border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.who-item:hover {
    background: #f0fcf9; /* CHANGED: Mint-green tint */
    border-color: #3aa68a;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 191, 159, 0.2);
}

.who-number {
    font-size: 48px;
    font-weight: 900;
    color: #4ABF9F; /* CHANGED: Mint-green */
    margin-bottom: 15px;
}

.who-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #4ABF9F; /* CHANGED: Mint-green */
    font-weight: 800;
}

.who-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #333333; /* CHANGED: Dark grey */
}

/* Water Comparison Section - CHANGED: Blue/teal water visuals */
.water-comparison {
    padding: 80px 0;
    background: #fff; /* CHANGED: White background */
}

.water-comparison h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.water-comparison h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.water-comparison .subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: #F4F4F4; /* CHANGED: Light grey */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.comparison-wrapper {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    user-select: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.comparison-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: center;
    transition: none;
}

.comparison-side.tap-water {
    background: linear-gradient(135deg, #6b5d4f 0%, #8b7355 100%);
    z-index: 1;
}

.comparison-side.amazing-water {
    background: linear-gradient(135deg, #0A6C9C 0%, #4ABF9F 100%); /* CHANGED: Deep blue to mint-green gradient */
    z-index: 2;
    clip-path: polygon(0% 0, 50% 0, 50% 100%, 0% 100%);
}

.water-visual {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.water-visual.tap {
    background: linear-gradient(180deg, #8b7355 0%, #6b5d4f 100%);
}

.water-visual.clean {
    background: linear-gradient(180deg, #4ABF9F 0%, #0A6C9C 100%); /* CHANGED: Mint-green to deep blue */
}

.contamination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(139, 69, 19, 0.3) 10px,
        rgba(139, 69, 19, 0.3) 20px
    );
    animation: contaminate 3s linear infinite;
}

@keyframes contaminate {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

.mineral-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mineral-sparkles::before,
.mineral-sparkles::after {
    content: '✨';
    position: absolute;
    font-size: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

.mineral-sparkles::before {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.mineral-sparkles::after {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

.comparison-stats {
    text-align: left;
}

.comparison-stats h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.tap-water .comparison-stats h3 {
    color: #fff;
}

.amazing-water .comparison-stats h3 {
    color: #000;
}

.stat-item {
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
}

.stat-item.danger {
    border-left: 4px solid #ff6b6b;
}

.stat-item.success {
    border-left: 4px solid #4ABF9F; /* CHANGED: Mint-green */
}

.stat-label {
    font-weight: 700;
    font-size: 13px;
    color: #333;
}

.stat-value {
    font-weight: 600;
    font-size: 13px;
    color: #000;
}

.comparison-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #4ABF9F 0%, #3aa68a 100%); /* CHANGED: Mint-green */
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(74, 191, 159, 0.6);
    z-index: 10;
    transition: box-shadow 0.3s ease;
}

.comparison-divider:hover {
    box-shadow: 0 0 40px rgba(74, 191, 159, 0.8);
}

.slider-button {
    background: #0A6C9C; /* CHANGED: Deep water blue */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(10, 108, 156, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #4ABF9F; /* CHANGED: Mint-green border */
}

.slider-button::before {
    content: '⬅';
    position: absolute;
    left: 8px;
    color: #4ABF9F; /* CHANGED: Mint-green */
    font-size: 14px;
}

.slider-button::after {
    content: '➡';
    position: absolute;
    right: 8px;
    color: #4ABF9F; /* CHANGED: Mint-green */
    font-size: 14px;
}

.comparison-instruction {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Contaminant Counter - CHANGED: Mint-green highlight boxes */
.contaminant-counter {
    background: #F4F4F4; /* CHANGED: Light grey */
    padding: 60px;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #4ABF9F; /* CHANGED: Mint-green border */
}

.contaminant-counter h3 {
    color: #4ABF9F; /* CHANGED: Mint-green */
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 900;
    text-transform: uppercase;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #4ABF9F; /* CHANGED: Mint-green border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.counter-item:hover {
    border-color: #3aa68a;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 191, 159, 0.2);
}

.counter-number {
    font-size: 56px;
    font-weight: 900;
    color: #4ABF9F; /* CHANGED: Mint-green */
    margin-bottom: 10px;
    line-height: 1;
}

.counter-label {
    font-size: 14px;
    color: #333333; /* CHANGED: Dark grey */
    font-weight: 600;
    text-transform: uppercase;
}

/* Problem Solution Section - CHANGED: Backgrounds */
.problem-solution {
    padding: 80px 0;
    background: #fff; /* CHANGED: White background */
}

.ps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.problem-box {
    background: #fff;
    padding: 50px;
    border-left: 6px solid #ff6b6b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.problem-box h3 {
    font-size: 32px;
    color: #ff6b6b;
    margin-bottom: 20px;
    font-weight: 800;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 12px 0;
    font-size: 17px;
    color: #333333; /* CHANGED: Dark grey */
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.problem-list li:before {
    content: '✗';
    color: #ff6b6b;
    font-weight: 800;
    font-size: 20px;
}

.solution-box {
    background: linear-gradient(135deg, #4ABF9F 0%, #3aa68a 100%); /* CHANGED: Mint-green gradient */
    padding: 50px;
    box-shadow: 0 10px 30px rgba(74, 191, 159, 0.3);
}

.solution-box h3 {
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 800;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    padding: 12px 0;
    font-size: 17px;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.solution-list li:before {
    content: '✓';
    color: #000;
    font-weight: 800;
    font-size: 20px;
}

/* 5-Stage Filtration Section - CHANGED: Mint-green highlight boxes */
.filtration-stages {
    padding: 80px 0;
    background: #F4F4F4; /* CHANGED: Light grey */
}

.filtration-stages h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.filtration-stages h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.filtration-stages .subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.stage-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 6px solid #4ABF9F; /* CHANGED: Mint-green */
    transition: all 0.3s ease;
}

.stage-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(74, 191, 159, 0.2);
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.stage-number {
    background: #4ABF9F; /* CHANGED: Mint-green */
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.stage-title {
    font-size: 28px;
    font-weight: 800;
    color: #000;
}

.stage-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333333; /* CHANGED: Dark grey */
    margin-bottom: 15px;
}

.stage-benefits {
    list-style: none;
    padding-left: 80px;
}

.stage-benefits li {
    padding: 8px 0;
    font-size: 15px;
    color: #333333; /* CHANGED: Dark grey */
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.stage-benefits li:before {
    content: '✓';
    color: #4ABF9F; /* CHANGED: Mint-green */
    font-weight: 900;
    font-size: 18px;
}

/* Kitchen Lifestyle Section */
.lifestyle-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3aa68a 0%, #4ABF9F 100%); /* CHANGED: Mint-green gradient */
    color: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lifestyle-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.lifestyle-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.lifestyle-section h2 .highlight {
    color: #000;
}

.lifestyle-section p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.lifestyle-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.lifestyle-image:hover {
    transform: translateY(-5px);
}

/* Components Section - CHANGED: Mint-green highlight boxes */
.components-section {
    padding: 80px 0;
    background: #fff; /* CHANGED: White background */
}

.components-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.components-section h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.components-section .subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.components-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.components-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.components-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.component-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #F4F4F4; /* CHANGED: Light grey */
    border-radius: 10px;
    border-left: 4px solid #4ABF9F; /* CHANGED: Mint-green */
    transition: all 0.3s ease;
}

.component-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.component-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.component-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 800;
    color: #000;
}

.component-content p {
    font-size: 15px;
    color: #333333; /* CHANGED: Dark grey */
    line-height: 1.6;
}

.installation-note {
    background: linear-gradient(135deg, #4ABF9F 0%, #3aa68a 100%); /* CHANGED: Mint-green gradient */
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.installation-note h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #000;
}

.installation-note p {
    font-size: 18px;
    color: #333;
}

/* Product Hero Section - CHANGED: Backgrounds */
.product-hero {
    padding: 80px 0;
    background: #fff; /* CHANGED: White background */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.product-image {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
    transition: all 0.4s ease;
    border-radius: 10px;
}

.product-info h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.product-info h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.product-info p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333333; /* CHANGED: Dark grey */
    line-height: 1.8;
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.feature-block {
    background: #F4F4F4; /* CHANGED: Light grey */
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #4ABF9F; /* CHANGED: Mint-green */
}

.feature-block h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.feature-block p {
    font-size: 14px;
    margin: 0;
    color: #333333; /* CHANGED: Dark grey */
}

/* Filter Anatomy Section - CHANGED: Backgrounds & Mint-green */
.filter-anatomy {
    padding: 80px 0;
    background: #F4F4F4; /* CHANGED: Light grey */
}

.filter-anatomy h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.filter-anatomy h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.anatomy-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.anatomy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.anatomy-image {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.filter-diagram {
    max-width: 100%;
    margin: 0 auto;
}

.filter-diagram svg {
    max-width: 100%;
    height: auto;
}

.image-caption {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.anatomy-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mineral-detail {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #4ABF9F; /* CHANGED: Mint-green */
}

.mineral-number {
    background: #4ABF9F; /* CHANGED: Mint-green */
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    flex-shrink: 0;
}

.mineral-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 800;
    color: #000;
}

.mineral-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333333; /* CHANGED: Dark grey */
}

.why-matters-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #4ABF9F; /* CHANGED: Mint-green */
}

.why-matters-box h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 800;
    text-align: center;
    color: #000;
}

.why-matters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 15px;
}

.why-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.why-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #333333; /* CHANGED: Dark grey */
}

/* Alkaline Science Section - CHANGED: Mint-green */
.alkaline-science {
    padding: 80px 0;
    background: #fff; /* CHANGED: White background */
    color: #333333;
}

.alkaline-science h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.alkaline-science h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.alkaline-science .intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.science-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #4ABF9F; /* CHANGED: Mint-green border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.science-card h3 {
    font-size: 24px;
    color: #4ABF9F; /* CHANGED: Mint-green */
    margin-bottom: 15px;
    font-weight: 800;
}

.science-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333; /* CHANGED: Dark grey */
}

.minerals-box {
    background: #f0fcf9; /* CHANGED: Mint-green tint */
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #4ABF9F; /* CHANGED: Mint-green */
}

.minerals-box h3 {
    font-size: 28px;
    color: #4ABF9F; /* CHANGED: Mint-green */
    margin-bottom: 25px;
    font-weight: 800;
    text-align: center;
}

.minerals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mineral-item {
    text-align: center;
    padding: 20px;
    background: #F4F4F4; /* CHANGED: Light grey */
    border-radius: 10px;
}

.mineral-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.mineral-item h4 {
    font-size: 16px;
    color: #4ABF9F; /* CHANGED: Mint-green */
    margin-bottom: 5px;
    font-weight: 800;
}

.mineral-item p {
    font-size: 13px;
    color: #333333; /* CHANGED: Dark grey */
}

/* Product Details Section - CHANGED: Backgrounds */
.product-details {
    padding: 80px 0;
    background: #fff; /* CHANGED: White background */
}

.product-details h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-details h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.details-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.spec-item {
    background: #F4F4F4; /* CHANGED: Light grey */
    padding: 25px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-label {
    font-weight: 800;
    font-size: 15px;
    color: #333333; /* CHANGED: Dark grey */
    text-transform: uppercase;
}

.spec-value {
    font-weight: 600;
    font-size: 15px;
    color: #666;
}

/* Customer Trust Section - CHANGED: Backgrounds */
.customer-trust {
    padding: 80px 0;
    background: #F4F4F4; /* CHANGED: Light grey */
}

.customer-trust h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
    text-transform: uppercase;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333; /* CHANGED: Dark grey */
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4ABF9F; /* CHANGED: Mint-green */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    color: #000;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 800;
    font-size: 16px;
    color: #000;
}

.testimonial-location {
    font-size: 13px;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: #4ABF9F; /* CHANGED: Mint-green */
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #333333; /* CHANGED: Dark grey */
    font-weight: 600;
    text-transform: uppercase;
}

/* FAQ Section - CHANGED: Backgrounds */
.faq-section {
    padding: 80px 0;
    background: #fff; /* CHANGED: White background */
}

.faq-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
    text-transform: uppercase;
}

.faq-section h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #F4F4F4; /* CHANGED: Light grey */
    margin-bottom: 15px;
    border-radius: 10px;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 17px;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e0e0e0;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
}

.faq-answer {
    display: none;
    padding: 0 25px 25px;
    font-size: 15px;
    color: #333333; /* CHANGED: Dark grey */
    line-height: 1.8;
}

/* Pricing Section - CHANGED: Mint-green & Orange */
.pricing-smash {
    padding: 80px 0;
    background: #fff; /* CHANGED: White background */
    color: #333333;
}

.pricing-smash h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-smash h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.pricing-boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 400px;
    border: 2px solid #4ABF9F; /* CHANGED: Mint-green border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.price-box.featured {
    border-color: #4ABF9F;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(74, 191, 159, 0.2);
}

.price-box:hover {
    border-color: #3aa68a;
    transform: translateY(-5px);
}

.price-box h3 {
    font-size: 24px;
    color: #4ABF9F; /* CHANGED: Mint-green */
    margin-bottom: 15px;
    font-weight: 800;
    text-align: center;
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    color: #333333; /* CHANGED: Dark grey */
    margin-bottom: 10px;
    text-align: center;
    line-height: 1;
}

.price-amount sup {
    font-size: 24px;
    top: -20px;
}

.price-note {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    font-size: 15px;
    color: #333333; /* CHANGED: Dark grey */
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li:before {
    content: '✓';
    color: #4ABF9F; /* CHANGED: Mint-green */
    font-weight: 900;
}

.price-cta {
    display: block;
    background: #FF7F2A; /* CHANGED: Orange accent */
    color: #000;
    padding: 15px;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.price-cta:hover {
    background: #e66f20; /* CHANGED: Slightly darker orange */
}

/* Guarantee Section - CHANGED: Backgrounds & Mint-green */
.guarantee {
    padding: 80px 0;
    background: #F4F4F4; /* CHANGED: Light grey */
}

.guarantee h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
    text-transform: uppercase;
}

.guarantee h2 .highlight {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.guarantee-item {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.guarantee-icon {
    font-size: 48px;
    color: #4ABF9F; /* CHANGED: Mint-green */
    margin-bottom: 20px;
}

.guarantee-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #000;
}

.guarantee-item p {
    font-size: 15px;
    color: #333333; /* CHANGED: Dark grey */
    line-height: 1.7;
}

/* Final Push Section - CHANGED: Mint-green */
.final-push {
    padding: 80px 0;
    background: linear-gradient(135deg, #4ABF9F 0%, #3aa68a 100%); /* CHANGED: Mint-green gradient */
    text-align: center;
    color: #000;
}

.final-push h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.final-push h2 .highlight {
    color: #000;
}

.final-push p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-massive {
    display: inline-block;
    background: #0A6C9C; /* CHANGED: Deep water blue */
    color: #fff;
    padding: 25px 60px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(10, 108, 156, 0.3);
}

.cta-massive:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 108, 156, 0.4);
    color: #fff;
}

/* Sticky CTA - CHANGED: Orange accent */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0A6C9C; /* CHANGED: Deep water blue */
    padding: 15px 0;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(10, 108, 156, 0.3);
    display: none;
}

.sticky-cta a {
    background: #FF7F2A; /* CHANGED: Orange accent */
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #e66f20; /* CHANGED: Slightly darker orange */
    transform: translateY(-2px);
}

/* Disclaimer - CHANGED: Background */
.disclaimer {
    padding: 40px 0;
    background: #F4F4F4; /* CHANGED: Light grey */
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* Footer - CHANGED: Header color */
footer {
    background: #0A6C9C; /* CHANGED: Deep water blue */
    padding: 60px 0 30px;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #4ABF9F; /* CHANGED: Mint-green */
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #fff;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4ABF9F; /* CHANGED: Mint-green */
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #ccc;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

/* Back to Top Button - CHANGED: Mint-green */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4ABF9F; /* CHANGED: Mint-green */
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(74, 191, 159, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #3aa68a; /* CHANGED: Slightly darker mint-green */
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 191, 159, 0.4);
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 54px;
    }
    
    .who-grid, .science-grid, .trust-grid, .minerals-grid, .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid, .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 24px;
    }
    
    /* Mobile Navigation Styles */
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0A6C9C; /* CHANGED: Deep water blue */
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 20px rgba(10, 108, 156, 0.3);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        text-align: center;
    }
    
    nav a:last-child {
        border-bottom: none;
    }
    
    .header-contact {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero .subtitle {
        font-size: 18px;
    }
    
    .ps-grid, .product-grid, .anatomy-grid, .details-grid, .who-grid, 
    .science-grid, .trust-grid, .guarantee-grid, .minerals-grid, 
    .why-matters-grid, .feature-blocks, .stats-grid, .counter-grid,
    .components-showcase {
        grid-template-columns: 1fr;
    }

    .comparison-wrapper {
        height: 600px;
    }

    .comparison-side {
        padding: 20px;
    }

    .comparison-stats h3 {
        font-size: 18px;
    }

    .stat-item {
        padding: 8px;
        margin-bottom: 6px;
    }

    .stat-label, .stat-value {
        font-size: 12px;
    }

    .water-visual {
        height: 100px;
    }

    .comparison-divider {
        width: 50px;
    }

    .slider-button {
        width: 50px;
        height: 50px;
    }

    .comparison-instruction {
        font-size: 13px;
    }
    
    .pricing-boxes {
        flex-direction: column;
    }
    
    .price-box {
        width: 100%;
    }
    
    .price-box.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta {
        display: block;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .cta-primary {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .header-content {
        gap: 10px;
    }

    .contaminant-counter {
        padding: 40px 20px;
    }

    .counter-number {
        font-size: 42px;
    }

    .counter-label {
        font-size: 12px;
    }
}

/* Testimonial in Hero */
.hero-testimonial {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid #4ABF9F; /* CHANGED: Mint-green */
}

.hero-testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 16px;
}

.hero-testimonial .author {
    font-weight: 700;
    color: #4ABF9F; /* CHANGED: Mint-green */
    font-size: 14px;
}

/* Enhanced Sticky CTA */
.sticky-cta {
    background: #0A6C9C; /* CHANGED: Deep water blue */
    padding: 15px 0;
    box-shadow: 0 -4px 20px rgba(10, 108, 156, 0.5);
}

.sticky-cta a {
    background: #FF7F2A; /* CHANGED: Orange accent */
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #e66f20; /* CHANGED: Slightly darker orange */
    transform: translateY(-2px);
}

/* Trust badges near pricing */
.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pricing-trust-badge {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #666;
}

/* NEW: Careyann Muller Section Styles */
.careyann-section {
    padding: 40px 0;
    background: #fff;
}

.careyann-content {
    max-width: 1100px;
    margin: 0 auto;
}

.careyann-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.careyann-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.careyann-photo img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 3px solid #f4f4f4;
}

.careyann-text h3 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 900;
    color: #000;
}

.careyann-title {
    font-size: 14px;
    color: #4ABF9F;
    font-weight: 700;
    margin-bottom: 12px;
}

.careyann-text p {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive adjustments for Careyann section */
@media (max-width: 768px) {
    .careyann-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .careyann-photo img {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }
    .careyann-text h3 {
        margin-top: 12px;
    }
}


/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-title .highlight {
    color: #4ABF9F;
}

.blog-section .subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.blog-post {
    background: #F4F4F4;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-post h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-post h3 a {
    color: #4ABF9F;
    text-decoration: none;
}

.blog-post p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}


/* EWG Search Widget Styles */
.ewg-search-container {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ewg-search-container:hover {
    background: rgba(255, 255, 255, 0.25);
}

.ewg-zip-input {
    width: 140px;
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.ewg-zip-input::placeholder {
    color: #999;
    font-weight: 500;
}

.ewg-zip-input:focus {
    box-shadow: 0 0 0 3px rgba(74, 191, 159, 0.3);
}

.ewg-search-btn {
    background: #4ABF9F;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.ewg-search-btn:hover {
    background: #3aa68a;
    transform: scale(1.1);
}

/* EWG Modal Styles */
.ewg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.ewg-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ewg-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ewg-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #FF7F2A;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 127, 42, 0.4);
}

.ewg-modal-close:hover {
    background: #e66f20;
    transform: rotate(90deg) scale(1.1);
}

.ewg-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .ewg-search-container {
        width: 100%;
        margin-top: 10px;
        order: 3;
    }
    
    .ewg-zip-input {
        flex: 1;
        width: auto;
    }
    
    .header-contact {
        flex-wrap: wrap;
    }
    
    .ewg-modal-content {
        width: 95%;
        height: 90vh;
        border-radius: 10px;
    }
    
    .ewg-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ewg-search-container {
        padding: 8px 12px;
    }
    
    .ewg-zip-input {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .ewg-search-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}