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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    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;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.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;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.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);
}

.nav-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.brand-mark {
    font-size: 24px;
    font-weight: 600;
    color: #2a2a2a;
}

.ad-disclosure {
    font-size: 13px;
    color: #666;
    font-style: italic;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    padding: 80px 40px 80px 80px;
    background-color: rgba(250, 250, 250, 0.95);
    margin-left: 5%;
}

.hero-text-offset h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-offset p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

.cta-hero {
    display: inline-block;
    padding: 15px 35px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-hero:hover {
    background-color: #5a8c69;
}

.intro-offset {
    padding: 120px 40px;
    background-color: #ffffff;
}

.intro-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.intro-image-wrap {
    flex: 1;
    position: relative;
    transform: translateY(-40px);
}

.intro-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-featured {
    padding: 100px 40px;
    background-color: #f5f5f5;
}

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

.section-header-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.section-header-asymmetric p {
    font-size: 18px;
    color: #666;
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.service-card.offset-left {
    margin-left: 0;
    margin-right: 15%;
}

.service-card.offset-right {
    margin-left: 15%;
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

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

.service-details {
    flex: 1;
    padding: 40px;
}

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

.service-details p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

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

.select-service {
    padding: 12px 30px;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #3a3a3a;
}

.cta-inline {
    padding: 100px 40px;
    background-color: #2a2a2a;
    color: #ffffff;
    text-align: center;
}

.cta-content-wrap h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content-wrap p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #ddd;
}

.cta-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #5a8c69;
}

.inquiry-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.form-container-offset p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #4a7c59;
}

.btn-submit {
    padding: 15px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #4a7c59;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #252525;
    border-radius: 4px;
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

.thanks-container .service-selected {
    font-weight: 600;
    color: #4a7c59;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #5a8c69;
}

.page-header {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.page-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2a2a2a;
    font-weight: 600;
}

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

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 6px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info .email-display {
    font-weight: 500;
    color: #2a2a2a;
}

.about-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.about-section {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1024px) {
    .hero-visual {
        width: 100%;
        clip-path: none;
        opacity: 0.3;
    }

    .hero-text-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .intro-grid,
    .about-section {
        flex-direction: column;
    }

    .intro-image-wrap {
        transform: none;
    }

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

    .section-header-asymmetric {
        margin-left: 0;
    }

    .form-container-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-text-offset h1 {
        font-size: 32px;
    }

    .section-header-asymmetric h2,
    .intro-text h2,
    .about-text h2 {
        font-size: 28px;
    }

    .service-details h3 {
        font-size: 24px;
    }

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

    .nav-container {
        padding: 15px 20px;
    }

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