* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 60%;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #5d9470;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a7c59;
}

.hero-section {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #f5f5f5;
}

.hero-content {
    padding: 80px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    overflow: hidden;
    background-color: #ddd;
}

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

.intro-cards {
    padding: 100px 20px;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1 1 300px;
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 100%;
    margin-bottom: 24px;
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.insight-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.story-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #444;
}

.story-image {
    width: 100%;
    margin: 50px 0;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.benefits-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.benefits-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1 1 300px;
}

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

.benefit-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.trust-section {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonial-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #bbb;
}

.services-preview {
    padding: 100px 20px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1 1 320px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px 12px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: bold;
    color: #4a7c59;
    padding: 0 24px 20px;
}

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 0;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #5d9470;
}

.form-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.form-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c2c2c;
}

.form-group input,
.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 textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #5d9470;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.page-header {
    padding: 80px 20px 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 19px;
    color: #555;
}

.about-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-story {
    margin-bottom: 60px;
}

.about-story h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-story p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.philosophy-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.philosophy-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
}

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

.values-section h2 {
    font-size: 34px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 300px;
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

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

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #5d9470;
}

.services-detail {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

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

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

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

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

.service-detail-price {
    font-size: 22px;
    color: #4a7c59;
    margin-bottom: 24px;
}

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

.contact-info-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1 1 400px;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-image {
    flex: 1 1 400px;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-note {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.contact-note h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.thanks-content {
    text-align: center;
}

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

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

.service-confirmation {
    font-weight: bold;
    color: #4a7c59;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c2c2c;
    text-decoration: none;
    border: 1px solid #2c2c2c;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.thanks-image {
    width: 100%;
    max-width: 600px;
    margin: 60px auto 0;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

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

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

.legal-page a {
    color: #4a7c59;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #5d9470;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #999;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .card-grid,
    .benefits-grid,
    .testimonial-wrapper,
    .service-cards,
    .values-grid {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

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