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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #357abd;
}

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

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

.header-offset {
    background: #fff;
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a90e2;
}

.ad-notice {
    font-size: 0.8rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #f9f9f9;
}

.hero-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding-right: 2rem;
    transform: translateY(-30px);
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5a3d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-image-offset {
    flex: 1;
    transform: translateY(40px) translateX(20px);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.intro-stagger {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left-column {
    flex: 1;
    padding-top: 2rem;
}

.intro-left-column h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-left-column p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.intro-right-overlay {
    flex: 1;
    transform: translateY(-50px);
}

.intro-right-overlay img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.services-irregular {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 4rem;
    transform: translateX(4rem);
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 1.05rem;
    color: #666;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.card-offset-1 {
    transform: translateY(0);
}

.card-offset-2 {
    transform: translateY(40px);
}

.card-offset-3 {
    transform: translateY(-20px);
}

.card-offset-4 {
    transform: translateY(60px);
}

.card-offset-5 {
    transform: translateY(20px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.card-content {
    padding: 1.8rem;
}

.card-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-top: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #357abd;
}

.form-section-diagonal {
    background: #f5f5f5;
    padding: 6rem 2rem;
    margin: 6rem 0;
    transform: skewY(-2deg);
}

.form-wrapper-offset {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: skewY(2deg);
}

.form-wrapper-offset h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #e8f4f8;
    border-radius: 6px;
    color: #1a1a1a;
}

.selected-service-display span {
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #2d5a3d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1f3d2a;
    transform: translateY(-2px);
}

.trust-offset {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.trust-content h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    transform: translateX(-2rem);
}

.testimonial-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-grid blockquote {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #4a90e2;
}

.testimonial-1 {
    transform: translateY(0);
}

.testimonial-2 {
    transform: translateY(30px);
}

.testimonial-3 {
    transform: translateY(-15px);
}

.testimonial-grid p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-grid cite {
    font-size: 0.9rem;
    color: #888;
    font-style: normal;
}

.values-split {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.values-image {
    flex: 1;
    transform: translateX(-30px);
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.values-text {
    flex: 1;
    transform: translateX(30px);
}

.values-text h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.values-text ul {
    list-style: none;
}

.values-text li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.values-text li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.footer-irregular {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
    margin-top: 8rem;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col a,
.footer-col p {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-copy {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.contact-main {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    transform: translateY(40px);
}

.contact-info-block h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
    font-weight: 700;
}

.info-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    transform: translateY(-40px);
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

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

.legal-page p,
.legal-page ul {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

.about-hero {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    transform: translateX(-2rem);
}

.about-content-stagger {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
}

.about-text-col {
    flex: 1.5;
}

.about-text-col p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-col {
    flex: 1;
    transform: translateY(-40px);
}

.about-image-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.services-page-main {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-page-header {
    margin-bottom: 4rem;
}

.services-page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-page-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
}

.services-list-offset {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item-asymmetric {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-item-asymmetric:nth-child(odd) {
    transform: translateX(-2rem);
}

.service-item-asymmetric:nth-child(even) {
    transform: translateX(2rem);
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 1;
}

.service-item-image img {
    width: 100%;
    height: 280px;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-item-content {
    flex: 1.5;
}

.service-item-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-item-content .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.thanks-container {
    max-width: 800px;
    margin: 8rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #2d5a3d;
    margin-bottom: 2rem;
}

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

.thanks-container p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-service-ref {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.thanks-service-ref strong {
    color: #2d5a3d;
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #4a90e2;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: #357abd;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-asymmetric,
    .intro-stagger,
    .values-split,
    .contact-asymmetric,
    .about-content-stagger,
    .service-item-asymmetric {
        flex-direction: column;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .section-header-offset {
        transform: none;
    }

    .service-cards-asymmetric {
        justify-content: center;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        transform: none;
    }

    .testimonial-1,
    .testimonial-2,
    .testimonial-3 {
        transform: none;
    }

    .values-image,
    .values-text {
        transform: none;
    }

    .service-item-asymmetric:nth-child(odd),
    .service-item-asymmetric:nth-child(even) {
        transform: none;
        flex-direction: column;
    }
}