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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}

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

.ad-disclosure {
    padding: 8px 16px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.disclosure-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.main-nav a:hover {
    color: #2d5f3f;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    background-color: #f8faf9;
}

.hero-content-left {
    flex: 1;
    padding: 60px 80px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-hero:hover {
    background-color: #1f4229;
}

.hero-image-right {
    flex: 1;
    background-color: #e0e7e3;
}

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

.intro-section {
    padding: 100px 0;
}

.intro-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #f4f6f5;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-showcase {
    padding: 100px 0;
    background-color: #fafbfb;
}

.section-title-centered {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-row {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-text-right,
.service-text-left {
    flex: 1;
    padding: 40px;
}

.service-text-right h3,
.service-text-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-text-right p,
.service-text-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 24px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1f4229;
}

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #e8ebe9;
}

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

.form-section {
    padding: 100px 0;
    background-color: #f0f4f2;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 48px;
}

.contact-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 100px 0;
}

.trust-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

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

.trust-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.trust-image {
    flex: 1;
    background-color: #f4f6f5;
}

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

.main-footer {
    background-color: #1a2a1f;
    color: #e8ebe9;
    padding: 60px 0 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #2d3d32;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #a0a8a4;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #4a5568;
}

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

.btn-primary {
    padding: 12px 28px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1f4229;
}

.btn-secondary {
    padding: 12px 28px;
    background-color: #e8ebe9;
    color: #2c3e50;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f8faf9;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-intro,
.philosophy-section,
.team-section {
    padding: 80px 0;
}

.content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.about-text,
.philosophy-text,
.team-text {
    flex: 1;
}

.about-text h2,
.philosophy-text h2,
.team-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p,
.philosophy-text p,
.team-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-image,
.philosophy-image,
.team-image {
    flex: 1;
    background-color: #f4f6f5;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8faf9;
}

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    padding: 40px 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background-color: #2d5f3f;
}

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

.cta-section p {
    font-size: 20px;
    color: #e8f5e9;
    margin-bottom: 36px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2d5f3f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f4f2;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1;
    background-color: #f4f6f5;
}

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

.service-detail-content {
    flex: 1;
    padding: 48px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
}

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

.process-section {
    padding: 80px 0;
    background-color: #f8faf9;
}

.process-steps {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.cta-form-section {
    padding: 100px 0;
    background-color: #f0f4f2;
}

.cta-form-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-form-section p {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 48px;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.contact-info-block p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 36px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0;
}

.contact-note {
    padding: 20px;
    background-color: #f8faf9;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: #4a5568;
    margin: 0;
}

.contact-image-block {
    flex: 1;
    background-color: #f4f6f5;
}

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

.map-section {
    padding: 80px 0;
    background-color: #f8faf9;
}

.map-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.map-placeholder {
    padding: 80px 40px;
    background-color: #e8ebe9;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.map-note {
    font-size: 16px;
    color: #5a6c7d;
}

.thanks-section {
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    margin-bottom: 40px;
}

.thanks-message p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-confirmation {
    padding: 24px;
    background-color: #e8f5e9;
    border-radius: 6px;
    margin: 28px 0;
}

.service-confirmation p {
    font-size: 18px;
    color: #1f4229;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-contact-info {
    padding: 24px;
    background-color: #f8faf9;
    border-radius: 6px;
}

.thanks-contact-info p {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.last-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1f4229;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d1d5db;
}

.cookie-table th {
    background-color: #f8faf9;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a5568;
}

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

    .hero-content-left {
        padding: 40px 30px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .intro-split,
    .content-split,
    .trust-content-split,
    .service-row,
    .service-detail-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .values-grid,
    .process-steps {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

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