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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #229954;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #27ae60;
}

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

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.85), rgba(39, 174, 96, 0.65));
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

.intro-section h2 {
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 35px;
    color: #2d5f3f;
}

.intro-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a5568;
}

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

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d5f3f;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.split-image {
    flex: 1;
    background-color: #e8f5e9;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-section {
    padding: 100px 0;
    background: #ffffff;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #2d5f3f;
    text-align: center;
}

.insight-section > p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    color: #4a5568;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.insight-card {
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #27ae60;
}

.insight-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.insight-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.trust-section {
    padding: 100px 0;
    background: #2d5f3f;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 16px;
    opacity: 0.8;
}

.benefits-section {
    padding: 100px 0;
    background: #ffffff;
}

.benefits-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2d5f3f;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #27ae60;
}

.benefit-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.services-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5f3f;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #e8f5e9;
}

.service-card h3 {
    font-size: 24px;
    padding: 25px 25px 15px;
    color: #2d5f3f;
}

.service-card p {
    padding: 0 25px 25px;
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
}

.pricing-section {
    padding: 100px 0;
    background: #ffffff;
}

.pricing-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5f3f;
    text-align: center;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-card {
    padding: 35px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: #e8f5e9;
    box-shadow: 0 5px 20px rgba(45, 95, 63, 0.1);
}

.pricing-card h3 {
    font-size: 24px;
    color: #2d5f3f;
    flex: 1;
    min-width: 250px;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.pricing-card p {
    flex-basis: 100%;
    font-size: 16px;
    color: #4a5568;
    margin: 0;
}

.form-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5f3f;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2d5f3f;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    text-align: center;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 10px;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #27ae60;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-content {
        flex-direction: column;
    }

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .services-grid {
        flex-direction: column;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

.about-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #2d5f3f, #27ae60);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-content {
    padding: 80px 0;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d5f3f;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.services-detail-section {
    padding: 80px 0;
}

.services-detail-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d5f3f;
    text-align: center;
}

.service-detail-card {
    margin-bottom: 60px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

.service-detail-text .price-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 15px;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f5e9;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.contact-section {
    padding: 80px 0;
}

.contact-section h1 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2d5f3f;
    text-align: center;
}

.contact-info {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2d5f3f;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d5f3f;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2d5f3f;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #27ae60;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5568;
}

.thanks-content .btn-back {
    display: inline-block;
    padding: 15px 40px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-content .btn-back:hover {
    background: #229954;
}