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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e2e;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #6b8e6b;
    color: #ffffff;
}

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

.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 #e0e0d8;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2c3e2e;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    color: #888;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #2c3e2e;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.main-nav a:hover {
    color: #6b8e6b;
}

.hero-magazine {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #d4e0d4;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem 2rem;
    color: #ffffff;
}

.hero-overlay h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
}

.intro-magazine {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.magazine-grid {
    display: flex;
    gap: 3rem;
}

.main-column {
    flex: 2;
}

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

.feature-article h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #2c3e2e;
}

.feature-article p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

.inline-image {
    margin: 2rem 0;
    background-color: #d4e0d4;
}

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

.quick-info-card,
.cta-sidebar {
    background-color: #f5f5f0;
    padding: 2rem;
    border-left: 4px solid #6b8e6b;
}

.quick-info-card h4,
.cta-sidebar h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e2e;
}

.quick-info-card p,
.cta-sidebar p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    background-color: #6b8e6b;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #578157;
}

.services-showcase {
    background-color: #ffffff;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.section-header-magazine {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.section-header-magazine h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: #2c3e2e;
}

.section-header-magazine p {
    font-size: 1.1rem;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.services-magazine-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card-large {
    flex: 1 1 100%;
    display: flex;
    background-color: #fafaf8;
    overflow: hidden;
}

.service-card-medium {
    flex: 1 1 calc(50% - 1rem);
    background-color: #fafaf8;
    display: flex;
    flex-direction: column;
}

.service-card-small {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #fafaf8;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-image-wrapper {
    background-color: #d4e0d4;
}

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

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

.service-card-medium .service-image-wrapper {
    height: 250px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h4,
.service-card-small h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e2e;
}

.service-content p,
.service-card-small p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6b8e6b;
}

.select-service {
    background-color: #2c3e2e;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a251a;
}

.testimonial-magazine {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.testimonial-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.testimonial-content {
    flex: 1;
}

.testimonial-image {
    flex: 1;
    background-color: #d4e0d4;
}

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

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    padding: 2rem;
    background-color: #f5f5f0;
    border-left: 5px solid #6b8e6b;
}

blockquote p {
    margin-bottom: 1rem;
}

cite {
    font-size: 1rem;
    font-style: normal;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-form-section {
    background-color: #f5f5f0;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.form-container-magazine {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c3e2e;
}

.form-intro p {
    font-size: 1.05rem;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.magazine-form {
    background-color: #ffffff;
    padding: 3rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e2e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0d0c8;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    background-color: #fafaf8;
}

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

.btn-submit {
    width: 100%;
    background-color: #6b8e6b;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta-magazine {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.cta-content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
    padding: 3rem;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c3e2e;
}

.cta-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #6b8e6b;
    border: 2px solid #6b8e6b;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #6b8e6b;
    color: #ffffff;
}

.cta-image {
    flex: 1;
    background-color: #d4e0d4;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h5 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-column ul li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-disclaimer p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #aaa;
}

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

.footer-bottom p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    color: #888;
}

.thanks-page {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-page h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #6b8e6b;
}

.thanks-page p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.thanks-page .service-selected {
    background-color: #f5f5f0;
    padding: 1.5rem;
    margin: 2rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 968px) {
    .magazine-grid,
    .testimonial-layout,
    .cta-content-split {
        flex-direction: column;
    }

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

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

    .form-row {
        flex-direction: column;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

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

@media (max-width: 640px) {
    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}