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

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

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #2c5f2d;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 0;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 18px 0;
    display: block;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-section {
    display: flex;
    align-items: center;
    min-height: 550px;
    background: linear-gradient(135deg, #2c5f2d 0%, #1f4520 100%);
    color: #ffffff;
    padding: 60px 20px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    background-color: #1f4520;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f2d;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.intro-cards {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
}

.info-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.info-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2c5f2d;
}

.info-card p {
    padding: 0 24px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.price-tag {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 18px;
    margin-top: auto;
}

.text-image-split {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c5f2d;
}

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

.split-image {
    flex: 1;
    background-color: #f0f0f0;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.text-link {
    color: #2c5f2d;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    display: inline-block;
    margin-top: 12px;
    transition: opacity 0.3s;
}

.text-link:hover {
    opacity: 0.7;
}

.service-selection {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.service-selection h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f2d;
}

.service-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-module {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.service-module h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.service-module p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.module-price {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: #2c5f2d;
    margin-top: 16px;
}

.contact-form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.submit-button {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.why-choose {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.why-choose h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f2d;
}

.features-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-item {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.feature-item p {
    color: #555;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f0f0f0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 30px;
}

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

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

.footer-column p {
    line-height: 1.7;
    opacity: 0.9;
    font-size: 14px;
}

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

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

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 30px 20px;
}

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

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

.cookie-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.cookie-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

.cookie-btn.reject {
    background-color: #f0f0f0;
    color: #333;
}

.cookie-btn.reject:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, #2c5f2d 0%, #1f4520 100%);
    color: #ffffff;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 19px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 20px;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro img {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.intro-text p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
    font-size: 17px;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c5f2d;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.expertise-section {
    margin-bottom: 80px;
}

.expertise-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c5f2d;
}

.expertise-section p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
    font-size: 17px;
    max-width: 900px;
}

.team-approach {
    display: flex;
    gap: 50px;
    align-items: center;
}

.team-approach img {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

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

.cta-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.services-detail {
    padding: 80px 20px;
}

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

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

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

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.service-info p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 17px;
}

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

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

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

.service-pricing {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-top: 24px;
}

.service-pricing .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.service-pricing .price-note {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.service-cta {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.contact-info-block > p {
    margin-bottom: 32px;
    line-height: 1.8;
    color: #555;
    font-size: 17px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c5f2d;
}

.detail-item p {
    color: #555;
    line-height: 1.8;
}

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

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

.additional-info {
    margin-bottom: 60px;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c5f2d;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 240px;
    max-width: 270px;
    text-align: center;
}

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

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

.step-item p {
    color: #555;
    line-height: 1.7;
}

.location-note {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.location-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f2d;
    text-align: center;
}

.location-note p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
    font-size: 17px;
    text-align: center;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
}

.service-confirmation {
    background-color: #f0f8f0;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2c5f2d;
}

.next-steps {
    text-align: left;
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

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

.next-steps ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

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

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

.secondary-button {
    display: inline-block;
    background-color: #f0f0f0;
    color: #2c5f2d;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.contact-reminder {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.contact-reminder p {
    font-size: 15px;
    color: #666;
}

.legal-page {
    padding: 60px 20px 80px;
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #555;
}

.update-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-section {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

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

    .split-content,
    .service-block,
    .about-intro,
    .team-approach,
    .contact-layout {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}