* {
    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: #2a2a2a;
    background: #fafafa;
}

.ad-disclosure {
    background: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a2d;
}

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

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

.nav-links a:hover {
    color: #4a7a4a;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    margin: 60px 40px;
    gap: 40px;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-30px);
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a3a1a;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #4a7a4a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #3a6a3a;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hero-image-right img {
    width: 100%;
    height: 100%;
}

.intro-narrow {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.intro-narrow p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
}

.services-asymmetric {
    padding: 80px 40px;
    background: #f5f5f5;
}

.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 60px;
    padding-left: 40px;
}

.service-block-offset-right {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding-left: 120px;
    align-items: center;
}

.service-block-offset-left {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding-right: 120px;
    align-items: center;
}

.service-block-full {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    padding: 0 60px;
    align-items: center;
}

.service-visual {
    flex: 1;
    height: 320px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-visual-small {
    width: 280px;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.service-visual-small img {
    width: 100%;
    height: 100%;
}

.service-info {
    flex: 1;
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a3a1a;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #4a7a4a;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 28px;
    background: #2d5a2d;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1d4a1d;
}

.cta-floating {
    padding: 100px 40px;
    background: linear-gradient(135deg, #e8f0e8 0%, #f0f5f0 100%);
}

.form-container-asymmetric {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a3a1a;
}

.form-intro p {
    color: #666;
    font-size: 16px;
}

.order-form {
    transform: rotate(1deg);
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7a4a;
}

.service-display {
    padding: 12px;
    background: #f0f5f0;
    border-radius: 4px;
    color: #2d5a2d;
    font-weight: 600;
}

.service-display.selected {
    background: #d4e8d4;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #4a7a4a;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #3a6a3a;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.why-us-offset {
    padding: 100px 40px;
    background: #fff;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 80px;
}

.why-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a3a1a;
}

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

.why-item {
    padding: 30px;
    background: #f9f9f9;
    border-left: 4px solid #4a7a4a;
}

.why-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5a2d;
}

.why-item p {
    color: #555;
    font-size: 16px;
}

.footer-asymmetric {
    background: #1a3a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    padding-left: 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #b8d4b8;
}

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

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-disclaimer {
    background: #0f2a0f;
    padding: 20px;
    margin: 40px 0 20px;
    border-radius: 4px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a4a2a;
    color: #999;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept {
    background: #4a7a4a;
    color: #fff;
}

.btn-accept:hover {
    background: #3a6a3a;
}

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

.btn-reject:hover {
    background: #fff;
    color: #2a2a2a;
}

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

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.thanks-content a {
    display: inline-block;
    padding: 14px 32px;
    background: #4a7a4a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #3a6a3a;
}

.page-header {
    padding: 80px 40px 40px;
    background: linear-gradient(135deg, #e8f0e8 0%, #f0f5f0 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a3a1a;
}

.page-header p {
    font-size: 18px;
    color: #555;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a3a1a;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: #2d5a2d;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.page-content ul {
    margin: 20px 0 20px 40px;
}

.page-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #444;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5a2d;
}

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

.service-list {
    padding: 60px 40px;
    background: #f5f5f5;
}

.service-list h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a3a1a;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a3a1a;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-card .price {
    font-size: 28px;
    color: #4a7a4a;
    font-weight: 700;
}

.about-sections {
    padding: 60px 40px;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3a1a;
}

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

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        margin: 20px;
        gap: 20px;
    }

    .hero-content-left,
    .hero-image-right {
        transform: none;
    }

    .service-block-offset-right,
    .service-block-offset-left,
    .service-block-full {
        flex-direction: column;
        padding: 0 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
        padding-left: 20px;
    }

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

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