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

.ad-disclosure {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #1a1a1a;
}

.hero-visual {
    margin-top: 100px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.95;
}

.story-intro {
    padding: 120px 40px;
    background-color: #fafafa;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.problem-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.split-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.image-block {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-reveal {
    padding: 120px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.insight-reveal h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    color: #1a1a1a;
}

.services-showcase {
    padding: 120px 40px;
    background-color: #ffffff;
}

.services-showcase h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #5a5a5a;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 20px 24px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-inline {
    padding: 100px 40px;
    background-color: #2c5f2d;
}

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

.testimonial-inline p {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-style: normal;
}

.trust-builder {
    padding: 120px 40px;
    background-color: #ffffff;
}

.form-section {
    padding: 120px 40px;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    color: #1a1a1a;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #3a3a3a;
}

.form-group input {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2c5f2d;
}

.submit-btn {
    padding: 16px 0;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 12px;
}

.submit-btn:hover {
    background-color: #1e4020;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

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

.footer-block ul li a:hover {
    color: #ffffff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1e4020;
}

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

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

.page-hero {
    margin-top: 140px;
    padding: 80px 40px;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4020 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.9;
}

.about-story {
    padding: 100px 40px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.text-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.image-content {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 40px;
    background-color: #fafafa;
}

.values-section h2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #5a5a5a;
}

.expertise-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.expertise-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    color: #1a1a1a;
}

.services-detail {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-full {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 28px 0 20px;
}

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1e4020 0%, #2c5f2d 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 50px;
    background-color: #ffffff;
    color: #1e4020;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-info {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.info-block {
    flex: 1;
}

.info-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.map-placeholder {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.thanks-page {
    padding: 140px 40px 100px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c5f2d;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.thanks-container a {
    color: #2c5f2d;
    text-decoration: underline;
}

.back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #1e4020;
}

.legal-page {
    padding: 140px 40px 80px;
    background-color: #fafafa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.legal-content ul {
    margin: 16px 0 24px 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 0 20px;
        top: 20px;
    }

    .nav-container {
        padding: 15px 25px;
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-overlay h1 {
        font-size: 38px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .split-layout,
    .split-layout.reverse,
    .content-wrapper,
    .service-full,
    .service-full.reverse,
    .contact-layout {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid {
        flex-direction: column;
    }
}