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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

.nav-card {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d6a4f;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d6a4f;
}

.ad-label {
    font-size: 0.75rem;
    color: #6c757d;
    background: #e9ecef;
    padding: 4px 12px;
    border-radius: 20px;
}

.hero-card {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2d6a4f;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    background: #ffffff;
    color: #2d6a4f;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.card-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.info-card {
    flex: 1;
}

.info-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d6a4f;
}

.info-card p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #495057;
}

.visual-card {
    flex: 1;
    background-color: #f1f3f5;
}

.visual-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.problem-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.centered-card h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.problem-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d9534f;
}

.problem-card p {
    color: #6c757d;
}

.solution-section {
    padding: 80px 0;
    background: #ffffff;
}

.solution-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.solution-visual {
    flex: 1;
    background-color: #f1f3f5;
}

.solution-visual img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.solution-content {
    flex: 1;
}

.solution-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2d6a4f;
}

.step-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #2d6a4f;
    display: flex;
    gap: 20px;
}

.step-number {
    background: #2d6a4f;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-card p {
    color: #6c757d;
}

.services-preview {
    padding: 80px 0;
    background: #f1f3f5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.service-cards {
    display: flex;
    gap: 30px;
}

.service-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border: 3px solid #2d6a4f;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #2d6a4f;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card ul li {
    padding: 10px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: 700;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.btn-select {
    background: #2d6a4f;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-select:hover {
    background: #1e4d36;
}

.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border-top: 4px solid #2d6a4f;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #495057;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    color: #2d6a4f;
}

.form-section {
    padding: 80px 0;
    background: #f1f3f5;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2d6a4f;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 35px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d6a4f;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #2d6a4f;
}

.btn-submit {
    width: 100%;
    background: #2d6a4f;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1e4d36;
}

.disclaimer-section {
    padding: 60px 0;
    background: #ffffff;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff3cd;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #ffc107;
}

.disclaimer-card p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-card {
    flex: 1;
}

.footer-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-card p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

.footer-card ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-card ul li a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    color: #495057;
}

.cookie-content a {
    color: #2d6a4f;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #2d6a4f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1e4d36;
}

.btn-reject {
    background: #e9ecef;
    color: #495057;
}

.btn-reject:hover {
    background: #dee2e6;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .card-grid,
    .solution-layout,
    .footer-grid {
        flex-direction: column;
    }

    .problem-grid,
    .service-cards,
    .testimonial-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}