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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFFFFF;
}

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

/* Header */
.header {
    background: #FFFFFF;
    padding: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    text-decoration: none;
}

.brand-name:hover {
    color: #7FB069;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8FAF8 0%, #FFFFFF 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero h2 {
    color: #2C2C2C;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    color: #4A4A4A;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.about-intro {
    padding: 5rem 0;
    background: #F9FDF9;
}

.products {
    padding: 5rem 0;
    background: #FFFFFF;
}

.ingredients {
    padding: 5rem 0;
    background: #F9FDF9;
}

.refill-program {
    padding: 5rem 0;
    background: #FFFFFF;
}

.hotel-services {
    padding: 5rem 0;
    background: #F9FDF9;
}

.subscription {
    padding: 5rem 0;
    background: #FFFFFF;
}

.testimonials {
    padding: 5rem 0;
    background: #F9FDF9;
}

.contact {
    padding: 5rem 0;
    background: #FFFFFF;
}

/* Section Content */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-content.centered {
    text-align: center;
}

.section-header.centered {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h4 {
    color: #2C2C2C;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price {
    display: block;
    color: #7FB069;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #7FB069;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.cta-button:hover {
    background: #6A9B57;
    transform: translateY(-1px);
}

.cta-button.secondary {
    background: #D4A574;
}

.cta-button.secondary:hover {
    background: #C19660;
}

/* Content Split Layout */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-split.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-split.reverse .content-text {
    order: 2;
}

.content-split.reverse .content-image {
    order: 1;
}

.content-text h3 {
    color: #2C2C2C;
    margin-bottom: 2rem;
}

.content-text p {
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.content-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.feature-item {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

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

.feature-item h4 {
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Ingredients List */
.ingredients-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.ingredients-list li {
    color: #4A4A4A;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.ingredients-list li:before {
    content: "🌿";
    position: absolute;
    left: 0;
}

/* Program Benefits */
.program-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-item strong {
    display: block;
    color: #7FB069;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-item span {
    color: #666;
    font-size: 0.9rem;
}

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

.service-item {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.service-item h4 {
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Subscription Options */
.subscription-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.option {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.option strong {
    display: block;
    color: #2C2C2C;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.option span {
    display: block;
    color: #666;
    margin-bottom: 1rem;
}

.option .price {
    color: #7FB069;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.testimonial-card p {
    color: #4A4A4A;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author strong {
    display: block;
    color: #2C2C2C;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details strong {
    display: block;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details a {
    color: #7FB069;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details address {
    color: #666;
    font-style: normal;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #2C2C2C;
    color: #FFFFFF;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    max-width: 280px;
}

.footer-section .logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-section .brand-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: #CCC;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: #CCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #7FB069;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-header h3 {
        font-size: 2rem;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-split.reverse .content-text,
    .content-split.reverse .content-image {
        order: unset;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-image img {
        height: 200px;
    }
    
    .section-header h3 {
        font-size: 1.75rem;
    }
    
    .product-card,
    .feature-item,
    .testimonial-card {
        padding: 1.5rem;
    }
}