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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 250px;
}

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

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

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #5a8c69;
}

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

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

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    position: relative;
    background-color: #f8f8f8;
}

.hero-content-offset {
    width: 45%;
    padding: 120px 60px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
    max-width: 420px;
}

.hero-image-block {
    width: 55%;
    position: relative;
    overflow: hidden;
    background-color: #d4d4d4;
}

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

.intro-offset {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: flex-start;
}

.intro-narrow {
    width: 55%;
    padding-top: 40px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #3c3c3c;
}

.intro-visual {
    width: 45%;
    position: relative;
    margin-top: -60px;
    background-color: #e8e8e8;
}

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

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

.section-header-left {
    max-width: 600px;
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-intro {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    width: calc(33.333% - 27px);
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
    margin-top: 60px;
}

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

.service-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d0d0d0;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

.service-select-btn {
    width: 100%;
    padding: 14px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select-btn:hover {
    background-color: #4a7c59;
}

.service-select-btn.selected {
    background-color: #4a7c59;
}

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

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 120px;
    background-color: #ffffff;
    padding: 60px;
    border-left: 5px solid #4a7c59;
}

.form-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #4a7c59;
}

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

.philosophy-asymmetric {
    display: flex;
    max-width: 1400px;
    margin: 140px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.philosophy-visual-left {
    width: 40%;
    background-color: #e0e0e0;
}

.philosophy-visual-left img {
    width: 100%;
    height: auto;
}

.philosophy-content-right {
    width: 60%;
    padding-left: 40px;
}

.philosophy-content-right h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.cta-floating {
    background-color: #4a7c59;
    padding: 80px 40px;
    text-align: center;
    margin: 100px 0;
}

.cta-content h3 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.cta-link {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #4a7c59;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

.footer-brand h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #aaa;
}

.footer-links h5,
.footer-contact h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a7c59;
}

.footer-contact p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 60px;
    background-color: #ffffff;
    text-align: center;
    border-top: 5px solid #4a7c59;
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.thanks-container .selected-service {
    font-size: 24px;
    font-weight: 700;
    color: #4a7c59;
    margin: 30px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #4a7c59;
}

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

    .hero-content-offset,
    .hero-image-block {
        width: 100%;
    }

    .hero-image-block {
        min-height: 400px;
    }

    .intro-offset,
    .philosophy-asymmetric {
        flex-direction: column;
    }

    .intro-narrow,
    .intro-visual,
    .philosophy-visual-left,
    .philosophy-content-right {
        width: 100%;
    }

    .service-card {
        width: calc(50% - 20px);
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        width: 100%;
        margin-top: 20px;
        justify-content: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .service-card {
        width: 100%;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }
}