* {
    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: #2d3436;
    background-color: #fdfbf7;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    max-width: 90%;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: #27ae60;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 12px;
    border-radius: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

.nav-menu a:hover {
    color: #27ae60;
}

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    padding-top: 100px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-offset-left {
    flex: 1;
    min-width: 300px;
    padding: 60px 80px;
    margin-left: 120px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.hero-offset-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2d3436;
}

.hero-subtext {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

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

.hero-image-right {
    flex: 1;
    min-width: 400px;
    margin-left: -80px;
    margin-top: -40px;
    background-color: #e8f5e9;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.intro-offset {
    display: flex;
    padding: 120px 60px;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.intro-narrow {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin-left: 180px;
}

.intro-narrow h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: #2d3436;
}

.intro-narrow p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.intro-image-overlap {
    flex: 1;
    min-width: 300px;
    margin-top: 80px;
    margin-right: 100px;
    background-color: #fff3cd;
}

.intro-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-cards-stagger {
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title-left {
    font-size: 2.6rem;
    margin-bottom: 60px;
    margin-left: 140px;
    color: #2d3436;
}

.cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 0 40px;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 320px;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 60px;
}

.card-offset-3 {
    margin-top: 30px;
}

.card-offset-4 {
    margin-top: 90px;
}

.card-offset-5 {
    margin-top: 15px;
}

.card-image-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #c8e6c9;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    font-size: 1.4rem;
    margin: 20px 20px 10px;
    color: #2d3436;
}

.card p {
    font-size: 0.95rem;
    color: #636e72;
    margin: 0 20px 15px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #229954;
}

.testimonial-inline {
    padding: 100px 60px;
    background: #2d3436;
    color: #ffffff;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

.form-section-diagonal {
    padding: 120px 60px;
    background: linear-gradient(120deg, #ffffff 0%, #e8f5e9 100%);
    position: relative;
}

.form-wrapper {
    max-width: 600px;
    margin-left: 160px;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.form-wrapper > p {
    color: #636e72;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

.why-choose-offset {
    padding: 100px 60px;
    margin-left: 80px;
}

.why-choose-offset h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #2d3436;
}

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

.reason {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reason h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.reason p {
    color: #636e72;
}

.footer-stacked {
    background: #2d3436;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #27ae60;
}

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

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #dfe6e9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b2bec3;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 52, 54, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

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

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

.page-header-diagonal {
    padding: 160px 60px 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.page-header-diagonal h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header-diagonal p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detail-layout {
    padding: 80px 60px;
}

.service-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
    flex-wrap: wrap;
}

.block-left {
    flex-direction: row;
}

.block-right {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    min-width: 300px;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d3436;
}

.service-text p {
    font-size: 1.05rem;
    color: #636e72;
    margin-bottom: 15px;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cta-floating {
    padding: 80px 60px;
    text-align: center;
    background: #2d3436;
    color: #ffffff;
}

.cta-floating h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.cta-floating p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-cta-large:hover {
    background: #229954;
    transform: translateY(-2px);
}

.about-hero-split {
    display: flex;
    padding: 140px 60px 80px;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text-column {
    flex: 1;
    min-width: 300px;
}

.about-text-column h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #2d3436;
}

.about-text-column p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 20px;
}

.about-image-column {
    flex: 1;
    min-width: 300px;
    background-color: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

.about-image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mission-offset {
    padding: 80px 60px;
    margin-left: 100px;
    max-width: 900px;
}

.mission-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2d3436;
}

.mission-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.values-cards {
    padding: 80px 60px;
    background: #f8f9fa;
}

.values-cards h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2d3436;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.value-card p {
    color: #636e72;
    line-height: 1.7;
}

.team-narrative {
    padding: 80px 120px;
    max-width: 1000px;
}

.team-narrative h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2d3436;
}

.team-narrative p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-inline {
    padding: 80px 60px;
    background: #ffffff;
}

.story-inline h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2d3436;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.story-block img {
    flex: 1;
    min-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ffe0b2;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-about {
    padding: 80px 60px;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2d3436;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #27ae60;
    color: #27ae60;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
    background: #27ae60;
    color: #ffffff;
}

.contact-header {
    padding: 140px 60px 60px;
    text-align: center;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.contact-header p {
    font-size: 1.2rem;
    color: #636e72;
}

.contact-info-asymmetric {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-block {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-width: 280px;
}

.address-block {
    margin-top: 0;
}

.email-block {
    margin-top: 40px;
}

.hours-block {
    margin-top: 20px;
}

.contact-block h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #27ae60;
}

.contact-block p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #2d3436;
}

.note {
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

.contact-map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #dfe6e9 0%, #b2bec3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 60px;
    border-radius: 8px;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 50px;
    border-radius: 8px;
    text-align: center;
}

.map-overlay p {
    font-size: 1.1rem;
    color: #2d3436;
}

.contact-faq {
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-faq h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #2d3436;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.faq-item p {
    color: #636e72;
    line-height: 1.7;
}

.legal-page {
    padding: 140px 60px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #2d3436;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3436;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #27ae60;
}

.legal-page p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
    color: #4a5568;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #95a5a6;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    padding: 40px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #2d3436;
}

.thanks-message {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 15px;
}

.service-name {
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 20px;
}

.next-steps {
    font-size: 1rem;
    color: #636e72;
    margin-bottom: 40px;
}

.btn-home {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #229954;
}

@media (max-width: 768px) {
    .hero-offset-left {
        margin-left: 20px;
        padding: 40px 30px;
    }

    .hero-offset-left h1 {
        font-size: 2.2rem;
    }

    .hero-image-right {
        margin-left: 0;
    }

    .intro-narrow {
        margin-left: 20px;
    }

    .intro-image-overlap {
        margin-right: 20px;
    }

    .section-title-left {
        margin-left: 20px;
    }

    .form-wrapper {
        margin-left: 0;
        padding: 30px;
    }

    .why-choose-offset {
        margin-left: 0;
    }

    .mission-offset {
        margin-left: 20px;
    }

    .team-narrative {
        padding: 60px 20px;
    }

    .floating-nav {
        top: 10px;
        padding: 10px 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-offset-left h1 {
        font-size: 1.8rem;
    }

    .nav-container {
        gap: 15px;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }
}