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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2c5f4f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #234a3d;
}

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-disclosure {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ad-label {
    font-size: 12px;
    color: #636e72;
    background-color: #f8f9fa;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 500;
}

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

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

.nav-menu a:hover {
    color: #2c5f4f;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.hero-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2d3436;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #2c5f4f;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f4f;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #2c5f4f;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5f4f;
    color: #ffffff;
}

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

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

.intro-content {
    flex: 2;
}

.intro-content h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-content p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.visual-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #636e72;
    font-weight: 500;
}

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

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-center h2 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #636e72;
    line-height: 1.7;
}

.service-split {
    max-width: 1300px;
    margin: 0 auto 60px;
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.service-details {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 32px;
    color: #2d3436;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-details p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 28px;
    color: #2c5f4f;
    font-weight: 700;
    margin: 30px 0 25px;
}

.btn-select-service {
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.testimonial-block {
    padding: 100px 40px;
    background-color: #2c5f4f;
    color: #ffffff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.testimonial-container blockquote {
    flex: 1;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ffffff;
}

.testimonial-container blockquote p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-container blockquote footer {
    font-size: 15px;
    font-style: normal;
    opacity: 0.9;
}

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

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

.inquiry-text {
    flex: 1;
}

.inquiry-text h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 25px;
    font-weight: 700;
}

.inquiry-text p {
    font-size: 17px;
    color: #636e72;
    line-height: 1.7;
}

.inquiry-form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 50px 45px;
    border-radius: 8px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.why-choose {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

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

.benefit-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
}

.benefit-item h4 {
    font-size: 22px;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

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

.footer-content {
    max-width: 1300px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    color: #b2bec3;
    line-height: 1.7;
}

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

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

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

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

.disclaimer-text {
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b2bec3;
}

.page-hero {
    background: linear-gradient(135deg, #2c5f4f 0%, #234a3d 100%);
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.mission-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-container h2 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.values-layout {
    display: flex;
    gap: 50px;
}

.value-block {
    flex: 1;
}

.value-block h3 {
    font-size: 24px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.value-block p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.8;
}

.team-approach {
    padding: 100px 40px;
    background-color: #ffffff;
}

.approach-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.approach-text {
    flex: 1.5;
}

.approach-text h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.approach-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c5f4f;
}

.timeline-number {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 10px;
}

.timeline-item h4 {
    font-size: 18px;
    color: #2d3436;
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-item p {
    font-size: 15px;
    color: #636e72;
}

.commitment-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
    text-align: center;
}

.commitment-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-wrapper h2 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 30px;
    font-weight: 700;
}

.commitment-wrapper p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.service-card-full {
    max-width: 1300px;
    margin: 0 auto 80px;
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card-image {
    flex: 1;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.service-card-content {
    flex: 1.2;
    padding: 60px 55px;
}

.service-card-content h2 {
    font-size: 34px;
    color: #2d3436;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-card-content p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 18px;
    line-height: 1.8;
}

.service-card-content h3 {
    font-size: 20px;
    color: #2d3436;
    margin: 30px 0 15px;
    font-weight: 700;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    color: #636e72;
    padding: 8px 0 8px 30px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 30px 0 25px;
}

.price-label {
    font-size: 16px;
    color: #636e72;
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    color: #2c5f4f;
    font-weight: 700;
}

.service-cta {
    background-color: #2c5f4f;
    padding: 100px 40px;
    text-align: center;
}

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

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

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    color: #2d3436;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 18px;
    color: #2d3436;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.8;
}

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

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.7;
}

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

.additional-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.additional-wrapper h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 30px;
    font-weight: 700;
}

.additional-wrapper p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.visiting-content {
    max-width: 1100px;
    margin: 0 auto;
}

.visiting-content h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 40px;
    font-weight: 700;
}

.directions-split {
    display: flex;
    gap: 60px;
}

.direction-block {
    flex: 1;
}

.direction-block h3 {
    font-size: 22px;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 700;
}

.direction-block p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.8;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    border-left: 4px solid #2c5f4f;
}

.service-confirmation p {
    font-size: 16px;
    color: #2d3436;
    margin: 0;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: #2d3436;
    margin-bottom: 40px;
    font-weight: 700;
}

.steps-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 20px;
    color: #2c5f4f;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-item p {
    font-size: 15px;
    color: #636e72;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

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

.legal-content h1 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #2d3436;
    margin: 30px 0 15px;
    font-weight: 700;
}

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

.legal-content ul {
    margin: 20px 0 25px 30px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content a {
    color: #2c5f4f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #234a3d;
}

@media (max-width: 1024px) {
    .hero-split,
    .service-split,
    .inquiry-split,
    .about-split,
    .approach-content,
    .service-card-full,
    .contact-main {
        flex-direction: column;
    }

    .service-split.reverse,
    .service-card-full.reverse {
        flex-direction: column;
    }

    .hero-text h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .benefits-grid,
    .values-layout,
    .testimonial-container,
    .directions-split,
    .steps-layout {
        flex-direction: column;
    }

    .intro-wrapper {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .nav-disclosure {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        margin-top: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-text,
    .service-details,
    .service-card-content {
        padding: 40px 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section-header-center h2,
    .why-content h2,
    .mission-container h2,
    .cta-content h2,
    .thanks-content h1 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}