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

:root {
    --primary-teal: #1a7f8e;
    --light-blue: #d6e9f5;
    --text-dark: #2c3e50;
    --text-gray: #666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --footer-dark: #0d4f5c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo span {
    color: var(--primary-teal);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}

/* Navigation - EXACT COPY FROM ORIGINAL */
nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-btn {
    background-color: rgb(255, 255, 255);
    color: rgb(44, 62, 80);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
}

/* Individual button colors from original */
.nav-btn.green {
    border-color: var(--primary-teal);;
    box-shadow: var(--primary-teal); 0px 2px 8px;
}

.nav-btn.blue {
    border-color: rgb(92, 107, 192);
    box-shadow: rgba(92, 107, 192, 0.3) 0px 2px 8px;
}

.nav-btn.orange {
    border-color: rgb(255, 152, 0);
    box-shadow: rgba(255, 152, 0, 0.3) 0px 2px 8px;
}

.nav-btn.purple {
    border-color: rgb(156, 39, 176);
    box-shadow: rgba(156, 39, 176, 0.3) 0px 2px 8px;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
}

.nav-btn.green:hover {
    box-shadow: rgba(124, 179, 66, 0.4) 0px 4px 12px;
}

.nav-btn.blue:hover {
    box-shadow: rgba(92, 107, 192, 0.4) 0px 4px 12px;
}

.nav-btn.orange:hover {
    box-shadow: rgba(255, 152, 0, 0.4) 0px 4px 12px;
}

.nav-btn.purple:hover {
    box-shadow: rgba(156, 39, 176, 0.4) 0px 4px 12px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-left h1 span {
    color: var(--primary-teal);
}

.hero-left h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-btn {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #156673;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(26, 127, 142, 0.3);
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: rgba(214, 233, 245, 0.3);
    padding: 30px;
    border-radius: 20px;
}

.hero-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.hero-card-icon {
    font-size: 36px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.hero-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.hero-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.about-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

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

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
    background: var(--white);
}

.how-we-work h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.step-icon {
    font-size: 32px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Effect Section */
.effect {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.effect h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.effect h2::before {
    content: "✨";
    margin-right: 10px;
}

.effect p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.checkbox-group label {
    font-size: 14px;
    color: var(--text-gray);
}

.checkbox-group a {
    color: var(--primary-teal);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #156673;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(26, 127, 142, 0.3);
}

/* Footer */
footer {
    background-color: var(--footer-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-about h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-icons {
    display: flex;
    gap: 15px;
}

.footer-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    background-color: var(--primary-teal);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

.footer-bottom-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    max-width: 600px;
    z-index: 10000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cookie-consent p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.cookie-consent p a {
    color: var(--primary-teal);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept-all {
    background-color: var(--primary-teal);
    color: var(--white);
}

.cookie-btn.essential {
    background-color: #e0e0e0;
    color: var(--text-dark);
}

.cookie-btn.settings {
    background-color: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 15px;
    }
    
    nav.active {
        right: 0;
    }
    
    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }
    
    .hero-left h2 {
        font-size: 22px;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    /* Sections */
    .about, .services, .how-we-work, .effect, .contact {
        padding: 60px 0;
    }
    
    .about h2, .services h2, .how-we-work h2, .effect h2, .contact h2 {
        font-size: 28px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Cookie Consent */
    .cookie-consent {
        max-width: 90%;
        padding: 20px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .hero-left h1 {
        font-size: 28px;
    }
    
    .hero-left h2 {
        font-size: 20px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

