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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    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);
}

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

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.editorial-article {
    background-color: #ffffff;
}

.article-hero {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    margin-bottom: 40px;
    background-color: #e8e8e8;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-intro {
    font-size: 22px;
    color: #555555;
    font-style: italic;
    line-height: 1.5;
}

.content-section {
    font-size: 18px;
}

.content-section p {
    margin-bottom: 24px;
}

.lead-text {
    font-size: 22px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 40px;
}

.inline-image-left,
.inline-image-right,
.inline-image-center {
    margin: 40px 0;
    background-color: #f0f0f0;
}

.inline-image-left {
    float: left;
    width: 45%;
    margin-right: 30px;
    margin-bottom: 20px;
}

.inline-image-right {
    float: right;
    width: 45%;
    margin-left: 30px;
    margin-bottom: 20px;
}

.inline-image-left img,
.inline-image-right img,
.inline-image-center img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.inline-image-center {
    clear: both;
}

h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.editorial-quote {
    font-size: 26px;
    font-style: italic;
    color: #4a7c59;
    margin: 40px 0;
    padding-left: 30px;
    border-left: 4px solid #4a7c59;
    line-height: 1.5;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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

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

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

.insight-block {
    margin: 35px 0;
    padding: 25px;
    background-color: #f8f8f8;
    border-left: 3px solid #4a7c59;
}

.insight-block h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
}

.insight-block p {
    margin-bottom: 0;
    font-size: 17px;
}

.testimonial-section {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial {
    margin: 30px 0;
    padding: 25px;
    background-color: #fafafa;
    font-style: italic;
}

.testimonial p {
    font-size: 19px;
    color: #333333;
    margin-bottom: 12px;
}

.testimonial cite {
    font-size: 16px;
    color: #666666;
    font-style: normal;
}

.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 50px 30px;
    background-color: #f5f5f5;
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

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

.disclaimer-box {
    margin: 50px 0 30px 0;
    padding: 25px;
    background-color: #fff9e6;
    border: 1px solid #f0e5b8;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 50px 30px 30px 30px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444444;
    text-align: center;
}

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

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 20px;
    }

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

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .editorial-container {
        padding: 30px 20px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-intro {
        font-size: 18px;
    }

    .inline-image-left,
    .inline-image-right {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

    h2 {
        font-size: 26px;
    }

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

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 20px;
    color: #555555;
}

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

.form-container {
    background-color: #f8f8f8;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid #e0e0e0;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.page-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333333;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    background-color: #f8f8f8;
    padding: 35px;
    margin: 40px 0;
    border-left: 4px solid #4a7c59;
}

.contact-info h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info strong {
    color: #2c2c2c;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 30px;
}

.thanks-icon {
    font-size: 72px;
    color: #4a7c59;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555555;
    line-height: 1.7;
}

.thanks-container .btn-primary {
    margin-top: 20px;
}