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

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #2d5a3d;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

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

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

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

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

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

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

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #333;
}

.services-grid {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9f8;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 250px;
    background-color: #e8ebe9;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 1rem;
    color: #2d5a3d;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d5a3d;
    padding: 0 1.5rem 1rem;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #234a30;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-section.hidden {
    display: none;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 2.25rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

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

.form-wrapper {
    flex: 1;
    background-color: #f8f9f8;
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #234a30;
}

.process-split {
    display: flex;
    min-height: 500px;
}

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

.process-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.process-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #333;
}

.process-visual {
    flex: 1;
    background-color: #e8ebe9;
}

.process-visual img {
    width: 100%;
    height: 100%;
}

.testimonials {
    padding: 5rem 2rem;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #2d5a3d;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9f8;
    border-left: 4px solid #2d5a3d;
}

.testimonial-card p {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2d5a3d;
    font-style: normal;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f8f9f8;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    border: 2px solid #d4d9d6;
    border-radius: 8px;
    background-color: #ffffff;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    color: #666;
    line-height: 1.8;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #2d5a3d;
}

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

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

.footer-column a {
    color: #ccc;
    transition: color 0.3s;
}

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

.footer-column p {
    color: #ccc;
}

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

.page-header {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 4rem;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9f8;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.btn-inquiry {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-inquiry:hover {
    background-color: #234a30;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #2d5a3d;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d5a3d;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.about-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

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

.about-content h2 {
    font-size: 2rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    background-color: #e8ebe9;
}

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

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #2d5a3d;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9f8;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

.team-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

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

.team-image {
    flex: 1;
    background-color: #e8ebe9;
}

.team-image img {
    width: 100%;
    height: 100%;
}

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

.team-content h2 {
    font-size: 2rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 1rem;
}

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

.timeline-section h2 {
    font-size: 2.5rem;
    color: #2d5a3d;
    text-align: center;
    margin-bottom: 3rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    flex-shrink: 0;
    width: 100px;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d5a3d;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background-color: #f8f9f8;
    border-left: 4px solid #2d5a3d;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
}

.contact-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.contact-info {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9f8;
}

.contact-info h2 {
    font-size: 2rem;
    color: #2d5a3d;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: #666;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    background-color: #e8ebe9;
}

.contact-visual img {
    width: 100%;
    height: 100%;
}

.location-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.location-section h2 {
    font-size: 2rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.location-section > p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.direction-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9f8;
    border-radius: 8px;
}

.direction-card h3 {
    font-size: 1.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.direction-card p {
    color: #666;
    line-height: 1.8;
}

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

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.thanks-details {
    background-color: #f8f9f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.thanks-details p {
    margin-bottom: 0.5rem;
    color: #333;
}

.thanks-container > p {
    color: #666;
    margin-bottom: 1rem;
}

.btn-return {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-return:hover {
    background-color: #234a30;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    color: #2d5a3d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.25rem;
    color: #2d5a3d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-container a {
    color: #2d5a3d;
    text-decoration: underline;
}

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

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

.cookie-table th {
    background-color: #f8f9f8;
    color: #2d5a3d;
    font-weight: 600;
}

.cookie-table td {
    color: #666;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split,
    .form-container-split {
        flex-direction: column;
    }

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

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

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

    .nav-menu {
        gap: 1rem;
    }

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

    .testimonial-card,
    .value-card {
        flex: 1 1 100%;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-year {
        width: auto;
    }
}