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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.cookie-banner.active {
    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;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-magazine {
    padding: 40px 0;
    background-color: #ffffff;
}

.hero-grid {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-main {
    flex: 2;
    position: relative;
    min-height: 600px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #ffffff;
    max-width: 600px;
}

.hero-overlay h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.hero-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-card {
    background-color: #4a7c59;
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
}

.stats-card h3 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.stats-card p {
    font-size: 16px;
    opacity: 0.9;
}

.intro-columns {
    padding: 100px 0;
    background-color: #fafafa;
}

.three-column-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.column-text,
.column-image,
.column-highlight {
    flex: 1;
}

.column-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.column-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.column-image {
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

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

.column-highlight {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.column-highlight blockquote {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.column-highlight cite {
    display: block;
    font-style: normal;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 15px;
}

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

.section-intro-offset {
    margin-bottom: 60px;
    padding-left: 80px;
}

.eyebrow {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a7c59;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-intro-offset h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.service-card.large-card {
    flex: 1 1 calc(66.666% - 15px);
    display: flex;
    flex-direction: row;
}

.service-card.medium-card {
    flex: 1 1 calc(50% - 15px);
}

.service-image {
    background-color: #e0e0e0;
    overflow: hidden;
}

.service-card.large-card .service-image {
    flex: 1;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card.large-card .service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

.service-cta {
    padding: 14px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-cta:hover {
    background-color: #4a7c59;
}

.community-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.split-content-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.inline-link {
    display: inline-block;
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #2c2c2c;
}

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

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

.testimonials-magazine {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #4a7c59;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

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

.cta-section {
    padding: 100px 0;
    background-color: #2c2c2c;
}

.cta-box {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-primary {
    padding: 18px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #2c2c2c;
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #3d6849;
}

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

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

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

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-info {
    max-width: 700px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4a7c59;
    font-weight: 600;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.about-hero {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 30px;
    font-weight: 800;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
}

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

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

.about-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.services-page-header {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.services-page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-page-header p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 80px 0;
}

.service-detail {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-detail h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail .price {
    font-size: 32px;
    color: #4a7c59;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.thanks-page {
    padding: 150px 0;
    text-align: center;
}

.thanks-page h1 {
    font-size: 56px;
    margin-bottom: 30px;
    font-weight: 800;
    color: #4a7c59;
}

.thanks-page p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
}

.thanks-page a {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-page a:hover {
    background-color: #4a7c59;
}

@media (max-width: 1024px) {
    .hero-grid {
        flex-direction: column;
    }

    .three-column-layout {
        flex-direction: column;
    }

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

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

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

    .split-content-reverse {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }
}

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

    .hero-overlay {
        left: 30px;
        bottom: 30px;
    }

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

    .section-intro-offset {
        padding-left: 0;
    }
}