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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

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

.hero-content-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1a472a;
    color: #ffffff;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #d4e4db;
}

.hero-image-right {
    flex: 1;
    background-color: #2d6a3e;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a472a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d6a3e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #1a472a;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-image-left {
    flex: 1;
    background-color: #e8f1ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-content-right {
    flex: 1;
}

.intro-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
    font-weight: 700;
}

.intro-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.services-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
    font-weight: 700;
}

.services-header-center p {
    font-size: 1.1rem;
    color: #666;
}

.services-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #e8f1ed;
    overflow: hidden;
}

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

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a472a;
}

.service-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.2rem;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d6a3e;
}

.services-cta {
    text-align: center;
}

.value-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background-color: #ffffff;
}

.value-content-left {
    flex: 1;
}

.value-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
    font-weight: 700;
}

.value-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.value-points-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: #f8f9fa;
    padding: 1.8rem;
    border-radius: 6px;
    border-left: 4px solid #2d6a3e;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a472a;
}

.value-item p {
    color: #666;
    font-size: 1rem;
}

.inquiry-section {
    padding: 5rem 5%;
    background-color: #1a472a;
}

.inquiry-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inquiry-left {
    flex: 1;
    color: #ffffff;
}

.inquiry-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.inquiry-left p {
    font-size: 1.1rem;
    color: #d4e4db;
}

.inquiry-right {
    flex: 1;
}

.inquiry-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background-color: #1a472a;
}

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

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

.page-hero {
    padding: 5rem 5%;
    background-color: #1a472a;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.2rem;
    color: #d4e4db;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    padding: 3rem 0;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
}

.service-detail-split:last-child {
    border-bottom: none;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a472a;
    font-weight: 700;
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: #555;
}

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

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d6a3e;
    margin-top: 1.5rem;
}

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

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

.services-cta-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.services-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.about-intro-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
}

.about-content-left {
    flex: 1;
}

.about-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
    font-weight: 700;
}

.about-content-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

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

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

.approach-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a472a;
    text-align: center;
    font-weight: 700;
}

.approach-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.approach-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.expertise-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
}

.expertise-image-left {
    flex: 1;
    background-color: #e8f1ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.expertise-content-right {
    flex: 1;
}

.expertise-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
    font-weight: 700;
}

.expertise-content-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.expertise-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.expertise-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: #555;
}

.expertise-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d6a3e;
    font-weight: bold;
}

.context-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.context-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a472a;
    text-align: center;
    font-weight: 700;
}

.context-split {
    display: flex;
    gap: 3rem;
}

.context-left,
.context-right {
    flex: 1;
}

.context-left p,
.context-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 4rem 5%;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a472a;
    text-align: center;
    font-weight: 700;
}

.values-split {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.values-content {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d6a3e;
}

.values-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.values-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
    font-weight: 700;
}

.contact-info-left > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #1a472a;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #2d6a3e;
}

.contact-note p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.contact-map-right {
    flex: 1;
    background-color: #e8f1ed;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-map-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.location-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a472a;
    text-align: center;
    font-weight: 700;
}

.location-split {
    display: flex;
    gap: 3rem;
}

.location-text {
    flex: 1;
}

.location-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.thanks-container {
    padding: 5rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
    font-weight: 800;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-details {
    text-align: left;
    margin-bottom: 3rem;
}

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

.next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: #555;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d6a3e;
    font-weight: bold;
}

.thanks-note {
    background-color: #e8f1ed;
    padding: 1.5rem;
    border-radius: 6px;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-page {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
    font-weight: 800;
}

.last-updated {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d6a3e;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

.legal-content a {
    color: #2d6a3e;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a472a;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-split,
    .intro-split,
    .value-split,
    .inquiry-container,
    .service-detail-split,
    .about-intro-split,
    .expertise-split,
    .context-split,
    .contact-split,
    .location-split {
        flex-direction: column;
    }

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

    .hero-content-left h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .services-cards {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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