* {
    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;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f5d;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f8faf9;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background-color: #f8faf9;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a3a38;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5f5d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    min-height: 600px;
}

.intro-image {
    flex: 1;
    background-color: #e8f0ef;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 2.4rem;
    color: #1a3a38;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #fafbfb;
}

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

.services-header h2 {
    font-size: 2.8rem;
    color: #1a3a38;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

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

.service-content {
    flex: 1;
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.9rem;
    color: #1a3a38;
    margin-bottom: 1.2rem;
}

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.8rem;
}

.service-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a5568;
}

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

.service-price {
    font-size: 1.4rem;
    color: #2d5f5d;
    font-weight: 700;
    margin-top: auto;
}

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

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

.form-section {
    display: flex;
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-content {
    flex: 1;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content h2 {
    font-size: 2.4rem;
    color: #1a3a38;
    margin-bottom: 1.2rem;
}

.form-content p {
    font-size: 1.1rem;
    color: #6b7280;
}

.form-container {
    flex: 1;
    background-color: #f8faf9;
    padding: 3rem;
    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,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

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

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

.site-footer {
    background-color: #1a3a38;
    color: #e0e7e6;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column a {
    color: #b8c5c3;
    text-decoration: none;
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.disclaimer {
    font-size: 0.85rem;
    color: #8b9d9b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a38;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-cookie.accept:hover {
    background-color: #3d7f7d;
    transform: translateY(-2px);
}

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

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

.page-hero {
    background: linear-gradient(135deg, #2d5f5d 0%, #1a3a38 100%);
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: #b8c5c3;
}

.about-split,
.values-split {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.about-text,
.values-text {
    flex: 1;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2,
.values-text h2 {
    font-size: 2.4rem;
    color: #1a3a38;
    margin-bottom: 1.5rem;
}

.about-text p,
.values-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.about-image,
.values-image {
    flex: 1;
    background-color: #e8f0ef;
    overflow: hidden;
}

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

.team-section {
    background-color: #f8faf9;
    padding: 5rem 2rem;
}

.team-section h2 {
    text-align: center;
    font-size: 2.6rem;
    color: #1a3a38;
    margin-bottom: 3rem;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.member-info h3 {
    font-size: 1.5rem;
    color: #1a3a38;
    margin-bottom: 0.5rem;
}

.role {
    color: #2d5f5d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: #6b7280;
    line-height: 1.6;
}

.approach-split {
    display: flex;
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.approach-content {
    flex: 1;
    padding-right: 4rem;
}

.approach-content h2 {
    font-size: 2.4rem;
    color: #1a3a38;
    margin-bottom: 2rem;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item h3 {
    font-size: 1.4rem;
    color: #2d5f5d;
    margin-bottom: 0.6rem;
}

.approach-item p {
    color: #4a5568;
    font-size: 1.05rem;
}

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

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

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    max-width: 1300px;
    margin: 0 auto 4rem;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a3a38;
    margin-bottom: 1.2rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: #2d5f5d;
    margin: 1.8rem 0 1rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    list-style: none;
    margin: 1rem 0 2rem;
}

.service-detail-content ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5f5d;
    font-weight: bold;
    font-size: 1.3rem;
}

.price-box {
    background-color: #f8faf9;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #2d5f5d;
    margin-top: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 1.8rem;
    color: #2d5f5d;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #6b7280;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f0ef;
    overflow: hidden;
}

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

.cta-section {
    background: linear-gradient(135deg, #2d5f5d 0%, #1a3a38 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #b8c5c3;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a3a38;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

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

.contact-split {
    display: flex;
    max-width: 1300px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
    padding-right: 4rem;
}

.contact-info h2 {
    font-size: 2.4rem;
    color: #1a3a38;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #2d5f5d;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #4a5568;
    font-size: 1.05rem;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,58,56,0.9) 0%, transparent 100%);
    padding: 2rem;
}

.map-overlay p {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
}

.response-section {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.response-content h2 {
    font-size: 2rem;
    color: #1a3a38;
    margin-bottom: 1.2rem;
}

.response-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1a3a38;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background-color: #f8faf9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details p {
    margin: 0.5rem 0;
    color: #4a5568;
}

.thanks-details strong {
    color: #2d5f5d;
}

.thanks-next {
    margin: 4rem 0;
}

.thanks-next h2 {
    font-size: 2rem;
    color: #1a3a38;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    gap: 2rem;
    text-align: left;
}

.step {
    flex: 1;
    display: flex;
    gap: 1rem;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: #2d5f5d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    color: #1a3a38;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    font-size: 0.95rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: #2d5f5d;
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45,95,93,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2d5f5d;
    border: 2px solid #2d5f5d;
}

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

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

.legal-page h1 {
    font-size: 2.8rem;
    color: #1a3a38;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #2d5f5d;
    margin: 2.5rem 0 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #1a3a38;
    margin: 1.8rem 0 0.8rem;
}

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

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: #f8faf9;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1a3a38;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-item,
    .form-section,
    .about-split,
    .values-split,
    .approach-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .service-content,
    .form-content,
    .about-text,
    .values-text,
    .approach-content,
    .service-detail-content,
    .contact-info {
        padding: 2rem;
    }

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

    .main-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }

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

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

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

    .next-steps {
        flex-direction: column;
    }
}