:root {
    --deep-emerald: #025b4b;
    --bright-maple: #ea7c27;
    --milky-white: #f7f5ef;
    --light-mint: #c6e2d8;
    --coal-graphite: #2e2e2e;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--milky-white);
    color: var(--coal-graphite);
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background-color: var(--deep-emerald);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    max-width: 150px;
}

.contact-info {
    color: var(--milky-white);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: var(--milky-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--bright-maple);
}

/* Hero Section */
.hero {
    background-color: var(--deep-emerald);
    color: var(--milky-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--bright-maple);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #d16c1e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--deep-emerald);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--bright-maple);
    margin: 15px auto 0;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-mint);
    border-radius: 50%;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--deep-emerald);
}

/* About Us Section */
.about {
    padding: 80px 0;
    background-color: var(--light-mint);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--deep-emerald);
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bright-maple);
    margin: 15px 0;
    display: block;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--deep-emerald);
    color: var(--milky-white);
}

.testimonials .section-title {
    color: var(--milky-white);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 600;
    display: block;
}

/* Product Section */
.product {
    padding: 80px 0;
}

.product-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.product-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-img img {
    width: 100%;
    height: auto;
    display: block;
}

.product-text {
    flex: 1;
}

.product-text h2 {
    color: var(--deep-emerald);
    margin-bottom: 20px;
}

.product-features {
    margin: 20px 0;
    padding-left: 20px;
}

.product-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: var(--light-mint);
    border-radius: 50%;
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background-color: var(--light-mint);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--deep-emerald);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-control:focus {
    border-color: var(--deep-emerald);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--bright-maple);
}

/* Footer */
footer {
    background-color: var(--deep-emerald);
    color: var(--milky-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--bright-maple);
    margin-top: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--milky-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bright-maple);
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 20px;
    margin-right: 10px;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.cookie-popup p {
    margin-bottom: 15px;
}

.cookie-popup a {
    color: var(--bright-maple);
}

/* Thank You Page */
.thank-you {
    padding: 100px 0;
    text-align: center;
}

.thank-you h1 {
    color: var(--deep-emerald);
    margin-bottom: 20px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background-color: var(--light-mint);
    color: var(--deep-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.legal-content h1 {
    color: var(--deep-emerald);
    margin-bottom: 30px;
}

.legal-content h2 {
    color: var(--deep-emerald);
    margin: 30px 0 15px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 20px;
}

.legal-content ul {
    padding-left: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        position: relative;
        top: auto;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        margin-top: 15px;
        justify-content: center;
    }
    
    .nav-menu li:first-child {
        margin-left: 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about-content, .product-content {
        flex-direction: column;
    }
    
    .about-img, .product-img {
        order: -1;
    }
    
    .feature-item, .service-card, .testimonial-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-menu li {
        margin-left: 0;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-column {
        min-width: 100%;
    }
} 