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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-asymmetric {
    margin-top: 80px;
    display: flex;
    min-height: 85vh;
}

.hero-offset-left {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    padding: 4rem 3rem 4rem 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #3d6847;
    transform: translateY(-2px);
}

.hero-visual-right {
    flex: 0 0 55%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.intro-offset {
    padding: 8rem 3rem 6rem;
    background: #fff;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 0 0 15%;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.services-irregular {
    padding: 6rem 3rem;
    background: #f8f9fa;
}

.services-title-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-left: 10%;
    color: #1a1a1a;
}

.service-card-overlap {
    display: flex;
    margin-bottom: 5rem;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card-overlap:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.service-1 {
    margin-left: 5%;
}

.service-2 {
    margin-left: 15%;
}

.service-3 {
    margin-left: 8%;
}

.service-4 {
    margin-left: 20%;
}

.service-5 {
    margin-left: 12%;
}

.service-visual {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.875rem 2rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: #1a1a1a;
}

.form-section-diagonal {
    padding: 8rem 3rem;
    background: linear-gradient(125deg, #2c2c2c 0%, #1a1a1a 100%);
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.form-intro {
    color: #d0d0d0;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #4a4a4a;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    background: rgba(255,255,255,0.08);
}

.form-group select option {
    background: #2c2c2c;
    color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #4a7c59;
    color: #fff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-stagger {
    padding: 8rem 3rem;
    background: #fff;
}

.testimonials-stagger h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-blocks {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 3rem;
    max-width: 700px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.testimonial-item.offset-right {
    margin-left: auto;
}

.testimonial-item p {
    font-size: 1.25rem;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-item cite {
    font-style: normal;
    color: #666;
    font-size: 1rem;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 5rem 3rem 2rem;
}

.footer-asymmetric {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.footer-column-wide {
    flex: 0 0 45%;
}

.footer-column-wide h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-column-wide p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.disclaimer {
    font-size: 0.875rem;
    color: #999;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-column-narrow {
    flex: 0 0 20%;
}

.footer-column-narrow h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-column-narrow ul li {
    margin-bottom: 0.75rem;
}

.footer-column-narrow a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    flex: 0 0 100%;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    margin-top: 2rem;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-return {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background: #3d6847;
}

.about-hero {
    margin-top: 80px;
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #1a1a1a;
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
}

.about-section {
    padding: 5rem 3rem;
}

.about-section:nth-child(even) {
    background: #fff;
}

.about-section:nth-child(odd) {
    background: #f8f9fa;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-section p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-page-hero {
    margin-top: 80px;
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
}

.services-page-hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.services-page-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: #d0d0d0;
}

.contact-hero {
    margin-top: 80px;
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: #4a4a4a;
}

.contact-details {
    padding: 5rem 3rem;
    background: #fff;
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 3rem 6rem;
    background: #fff;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1.0625rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.0625rem;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

    .hero-offset-left,
    .hero-visual-right {
        flex: 1 0 100%;
    }

    .hero-visual-right {
        min-height: 400px;
    }

    .service-card-overlap {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .service-visual {
        flex: 1 0 100%;
        min-height: 250px;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .footer-column-wide,
    .footer-column-narrow {
        flex: 1 0 100%;
    }
}