/* --- Variables & Reset --- */
:root {
    --bg-color: #ffffff;        /* 60% */
    --brand-color-light: #76ffc3; /* The lighter mint green */
    --accent-color: #00c75d;    /* 10% - Vibrant Green for buttons/icons */
    --text-dark: #222222;
    --text-grey: #666666;
    --white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --section-spacing: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Reusable Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover { background-color: #009e4a; }

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline:hover { background-color: var(--accent-color); color: var(--white); }

.section-padding { padding: var(--section-spacing) 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p { color: var(--text-grey); }

/* --- Header & Nav --- */
header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0; /* Reduced padding slightly to accommodate logo height */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

/* New style to control logo image size */
.logo img {
    height: 60px; /* Adjust this value if you want the logo bigger/smaller */
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-color); }

.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }
/* --- New Hero Section with Form --- */
.hero-section {
    padding: 3rem 0;
    background: linear-gradient(to right, #f8fcf9 50%, rgba(118, 255, 195, 0.1) 50%);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content { flex: 1; }

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-form-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 450px;
    margin-top: 2rem;
}

.hero-form-box h3 { margin-bottom: 1.5rem; }

.input-group { margin-bottom: 1rem; }

.input-group input, .input-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #eee;
    border-radius: 8px;
    outline: none;
}

.hero-image { flex: 1; }
.hero-image img { border-radius: 20px 20px 20px 100px; }

/* --- 6-Grid Services --- */
.services-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-box {
    background: #f8fcf9;
    padding: 2rem;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.service-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.sb-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-color-light);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* --- Why Choose Us (Split & Stats) --- */
.split-section-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-text { flex: 1; }
.split-image { flex: 1; }
.split-image img { border-radius: 20px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* --- How It Works (Steps) --- */
.steps-wrapper { margin-top: 3rem; }

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ddd;
}

.step-item.active .step-number { color: var(--accent-color); }

/* --- Video Section --- */
.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

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

.team-card {
    background: #f8fcf9;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
}

.team-img { height: 300px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.5rem; }
.team-role { color: var(--accent-color); font-size: 0.9rem; }

/* --- Testimonials (Reusing existing styles slightly modified) --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 2rem;
    border-radius: 10px;
}

.stars { color: #FFD700; margin-bottom: 1rem; }
.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.client-img { width: 50px; height: 50px; border-radius: 50%; background: #ddd; }

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

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-thumb { height: 200px; background: #eee; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { padding: 1.5rem; }
.blog-date { font-size: 0.85rem; color: var(--text-grey); margin-bottom: 0.5rem; }
.blog-content h3 { margin-bottom: 1rem; }

/* --- CTA Banner --- */
.cta-banner {
    background: var(--brand-color-light);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
}
.cta-banner h2 { color: var(--text-dark); margin-bottom: 1rem; }

/* --- FAQ Accordion --- */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}
.faq-icon { transition: 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent-color); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: var(--text-grey);
}
.faq-item.active .faq-answer { max-height: 200px; padding-top: 1rem; }

/* --- Newsletter & Footer --- */
.newsletter-bar {
    background: #f8fcf9;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border-radius: 30px;
    border: 1px solid #eee;
    outline: none;
}

footer {
    background-color: #f0f7f4; /* Slightly darker for footer */
    padding: 4rem 0 2rem;
}

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

.footer-col h4 { margin-bottom: 1.5rem; color: var(--text-dark); }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a:hover { color: var(--accent-color); }
.footer-col ul li a.active { color: var(--accent-color);}
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a {
    width: 40px; height: 40px;
    background: var(--white);
    display: flex; 
    align-Items: center; 
    justify-Content: center;
    border-radius: 50%;
    color: var(--accent-color);
}
.social-links a:hover { background: var(--accent-color); color: var(--white); }
.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .hero-wrapper, .split-section-wrapper {
        flex-direction: column;
    }
    .hero-section { background: linear-gradient(to bottom, #f8fcf9 70%, rgba(118, 255, 195, 0.1) 70%); }
    .hero-image { order: -1; margin-bottom: 2rem; }
    .hero-image img { border-radius: 20px; }
    .hero-content h1 { font-size: 2.5rem; text-align: center; }
    .hero-content p { text-align: center; }
    .hero-form-box { margin: 2rem auto 0; }
    .split-image { order: -1; }
    .nav-menu { display: none; }
    .hamburger { display: block; }
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    .cta-banner { padding: 2rem; }
    .newsletter-wrapper { flex-direction: column; text-align: center; }
    .newsletter-form { width: 100%; }
}

/* --- Append this to your css/style.css --- */

/* --- About Page Specifics --- */

/* 1. About Hero & Director Card */
.about-hero-section {
    padding: 3rem 0;
}

.about-header-text {
    margin-bottom: 2rem;
    max-width: 600px;
}
.about-header-text h1 {
    font-size: 3rem;
    color: var(--text-dark);
}

.director-card {
    background: #e6fcf5; /* Very light mint */
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.director-content {
    flex: 1;
    z-index: 2;
}

.director-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.director-content p {
    color: var(--text-grey);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.director-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.director-image img {
    border-radius: 20px;
    max-width: 350px;
    object-fit: cover;
}

/* 2. Vision & Mission (Side-by-Side) */
.vision-wrapper {
    display: flex;
    gap: 4rem;
}

.vision-sidebar {
    flex: 1;
    max-width: 300px;
}

.vision-sidebar h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    position: sticky;
    top: 100px; /* Sticky effect on scroll */
}

.vision-content {
    flex: 2;
}

.vision-block {
    margin-bottom: 3rem;
}

.vision-block h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.check-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-grey);
}

.check-list li i {
    color: var(--accent-color);
    margin-top: 5px;
}

/* 3. Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #e6fcf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* 4. Clinic Hours Section */
.hours-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.hours-info {
    flex: 1;
}

.hours-img-box {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.hours-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hours-schedule {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 1rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
    font-weight: 500;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row span:last-child {
    color: var(--text-grey);
}

/* --- Mobile Responsiveness for About Page --- */
@media (max-width: 992px) {
    .director-card {
        flex-direction: column-reverse;
        text-align: center;
        padding: 2rem;
    }
    .director-image img { max-width: 100%; }
    .vision-wrapper { flex-direction: column; gap: 2rem; }
    .vision-sidebar { max-width: 100%; }
    .vision-sidebar h2 { position: static; }
    .values-grid { grid-template-columns: 1fr; } /* Stack values on mobile */
    .hours-wrapper { flex-direction: column; }
    .hours-img-box { height: 250px; }
}

/* --- Append this to your css/style.css --- */

/* --- Services Page Specifics --- */

/* 1. New Services Grid with Images */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card-detailed {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.scd-image-box {
    position: relative;
    height: 240px;
}

.scd-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scd-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 54px;
    height: 54px;
    background: var(--white);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.scd-content {
    padding: 2rem;
}

.scd-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.scd-content p {
    color: var(--text-grey);
    font-size: 1rem;
}

/* 2. Services CTA Split Section */
.cta-split-section {
    background: #e6fcf5; /* Light mint background */
    border-radius: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-split-image {
    flex: 1;
    height: 450px;
}

.cta-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.cta-split-content {
    flex: 1;
    padding: 4rem;
}

.cta-split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* --- Mobile Responsiveness for Services Page --- */
@media (max-width: 992px) {
    .services-page-grid {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
        max-width: 500px;
        margin: 0 auto;
    }

    .cta-split-section {
        flex-direction: column;
        text-align: center;
    }

    .cta-split-image {
        height: 300px;
        width: 100%;
        order: -1; /* Put image on top */
    }

    .cta-split-content {
        padding: 3rem 2rem;
    }
}
/* --- Append this to your css/style.css --- */

/* --- Contact Page Specifics --- */

/* 1. Contact Hero & Map Split */
.contact-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.contact-header-row h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    flex: 1;
}

.contact-header-row p {
    flex: 1;
    color: var(--text-grey);
    max-width: 500px;
}

.contact-map-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: #eee;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info-panel h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info-panel p {
    color: var(--text-grey);
    margin-bottom: 2rem;
}

.c-info-item {
    margin-bottom: 1.5rem;
}

.c-info-item label {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.c-info-item span {
    color: var(--text-grey);
    display: block;
}

.c-socials {
    margin-top: 2rem;
}
.c-socials label { margin-bottom: 1rem; display:block; font-weight:700; }
.c-social-list { display: flex; flex-direction: column; gap: 0.8rem; }
.c-social-link { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    color: var(--text-grey); 
    font-weight: 500;
}
.c-social-icon {
    width: 30px; height: 30px;
    background: #e6fcf5;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* 2. Horizontal Steps Grid */
.steps-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card-h {
    background: var(--white);
    padding: 1rem;
}

.step-num-box {
    width: 50px;
    height: 50px;
    background: #d0f7e8; /* Slightly darker mint */
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-card-h h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* 3. Form & Schedule Split */
.contact-form-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.c-form-box h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.c-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.c-form-full { grid-column: span 2; }

.c-input {
    width: 100%;
    padding: 1rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    outline: none;
    color: var(--text-dark);
}
.c-input:focus { border-color: var(--accent-color); }
textarea.c-input { resize: vertical; min-height: 150px; }

.schedule-box-light {
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 2.5rem;
}

.schedule-box-light h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* --- Mobile Responsiveness for Contact --- */
@media (max-width: 992px) {
    .contact-header-row { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .contact-header-row h1 { font-size: 2.5rem; }
    .contact-map-wrapper { grid-template-columns: 1fr; }
    .contact-form-section { grid-template-columns: 1fr; }
    .c-form-grid { grid-template-columns: 1fr; }
    .c-form-full { grid-column: span 1; }
}

/* --- Append this to your css/style.css --- */

/* --- Sustainability Page Specifics --- */

/* 1. Sustainability Hero (Reusing hero base, adding specific bg) */
.sus-hero {
    background: linear-gradient(to right, #f8fcf9 50%, rgba(118, 255, 195, 0.15) 50%);
    padding: 4rem 0;
}

/* 2. Impact Stats Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--brand-color-light);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: #e6fcf5;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}

.impact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impact-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* 3. Green Pledge List */
.pledge-box {
    background: var(--brand-color-light);
    border-radius: 20px;
    padding: 3rem;
    color: var(--text-dark);
}

.pledge-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.1rem;
}

.pledge-list li i {
    color: var(--accent-color);
    background: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .sus-hero {
        background: linear-gradient(to bottom, #f8fcf9 60%, rgba(118, 255, 195, 0.15) 60%);
    }
}

/* --- Append this to css/style.css --- */

/* --- Coming Soon Page Specifics --- */
.cs-body {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(118, 255, 195, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cs-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 700px;
    width: 90%;
    text-align: center;
    border: 1px solid #fff;
}

.cs-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cs-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cs-content p {
    color: var(--text-grey);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Countdown Timer */
.countdown-box {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.time-unit {
    background: var(--brand-color-light);
    width: 80px;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.time-val {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-top: 5px;
    display: block;
}

/* Notification Form */
.cs-form {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.cs-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
}

.cs-footer-info {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    color: var(--text-grey);
    font-size: 0.9rem;
}

.cs-footer-info strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    .cs-content h1 { font-size: 2rem; }
    .countdown-box { gap: 10px; }
    .time-unit { width: 70px; }
    .time-val { font-size: 1.5rem; }
    .cs-form { flex-direction: column; }
    .cs-form button { width: 100%; }
}