* {
    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: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    color: #495057;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f2d;
}

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2c5f2d;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 140px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    max-width: 540px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4a4a4a;
    line-height: 1.5;
}

.hero-image-right {
    flex: 1;
    position: relative;
    background: #e8f5e9;
}

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

.cta-primary {
    display: inline-block;
    background: #2c5f2d;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1f4520;
}

.intro-asymmetric {
    display: flex;
    gap: 80px;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block-small {
    flex: 0 0 320px;
    background: #f8f9fa;
}

.intro-block-small h2 {
    font-size: 32px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-block-wide {
    flex: 1;
}

.intro-block-wide p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
}

.visual-break {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    background: #c8e6c9;
}

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

.services-grid-offset {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro-right {
    text-align: right;
    margin-bottom: 80px;
}

.services-intro-right h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro-right p {
    font-size: 20px;
    color: #666;
}

.service-card-left,
.service-card-right {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.service-card-left {
    flex-direction: row;
}

.service-card-right {
    flex-direction: row-reverse;
}

.service-card-left img,
.service-card-right img {
    flex: 0 0 45%;
    border-radius: 8px;
    object-fit: cover;
    background: #f1f8e9;
}

.service-content {
    flex: 1;
    padding: 20px 0;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 12px;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-block {
    flex: 1;
}

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

.footer-block p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 8px;
}

.footer-block ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: #ffffff;
    font-size: 14px;
    flex: 1;
}

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

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

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

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

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero-small {
    padding: 180px 40px 80px;
    text-align: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.page-hero-small h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero-small p {
    font-size: 20px;
    color: #555;
}

.about-content-asymmetric {
    display: flex;
    gap: 60px;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-text-wide {
    flex: 1.2;
}

.about-text-wide h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text-wide p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.about-image-offset {
    flex: 0.8;
    background: #e8f5e9;
}

.about-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c5f2d;
    font-weight: 600;
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.expertise-section {
    display: flex;
    gap: 80px;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.expertise-left {
    flex: 1;
}

.expertise-left h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.expertise-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.expertise-right {
    flex: 1;
    background: #f1f8e9;
}

.expertise-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-detail-layout {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    background: #2c5f2d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #1f4520;
}

.contact-layout {
    display: flex;
    gap: 80px;
    padding: 80px 40px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c5f2d;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-note {
    margin-top: 48px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-note p {
    font-size: 15px;
    color: #666;
}

.contact-note a {
    color: #2c5f2d;
    font-weight: 600;
    text-decoration: none;
}

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

.contact-visual-right {
    flex: 1;
    background: #c8e6c9;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

.legal-page a {
    color: #2c5f2d;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f2d;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.thanks-service-info {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #2c5f2d;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1f4520;
}

.btn-secondary {
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.btn-secondary:hover {
    background: #2c5f2d;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-block-small {
        flex: none;
    }

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

    .service-card-left img,
    .service-card-right img {
        flex: none;
        width: 100%;
    }

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

    .about-content-asymmetric,
    .expertise-section,
    .service-detail-card,
    .service-detail-card.reverse,
    .contact-layout {
        flex-direction: column;
    }

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

    .value-item {
        flex: none;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 20px;
        width: 95%;
    }

    .nav-inner {
        padding: 16px 24px;
    }

    .main-nav {
        gap: 16px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}