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

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

.ad-disclosure {
    background-color: #f4f1ea;
    color: #6b6b6b;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.75rem;
    border-bottom: 1px solid #e0ddd5;
    font-family: 'Arial', sans-serif;
}

.magazine-header {
    background-color: #ffffff;
    border-bottom: 2px solid #2d5f3f;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d5f3f;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

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

.main-nav a:hover {
    color: #2d5f3f;
}

.hero-editorial {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.hero-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: normal;
}

.hero-intro {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-link {
    display: inline-block;
    color: #2d5f3f;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 2px solid #2d5f3f;
    padding-bottom: 4px;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
}

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

.hero-image-column {
    flex: 1;
}

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

.intro-section {
    background-color: #f8f7f3;
    padding: 80px 40px;
}

.intro-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.intro-main {
    flex: 2;
}

.intro-main h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.intro-main p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.intro-sidebar {
    flex: 1;
}

.sidebar-box {
    background-color: #ffffff;
    padding: 30px;
    border-left: 3px solid #2d5f3f;
    margin-bottom: 30px;
}

.sidebar-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2d5f3f;
    font-weight: normal;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eeeeee;
    font-size: 0.95rem;
}

.sidebar-box ul li:last-child {
    border-bottom: none;
}

.sidebar-box p {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.visual-break {
    position: relative;
    margin: 0;
    height: 500px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px;
    color: #ffffff;
}

.visual-overlay p {
    font-size: 1.4rem;
    font-style: italic;
    max-width: 800px;
}

.services-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-header-editorial {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-editorial h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6a6a6a;
    font-style: italic;
}

.services-magazine-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border: 1px solid #e8e6e0;
    overflow: hidden;
}

.service-card.featured {
    border-left: 4px solid #2d5f3f;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

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

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.service-content p {
    font-size: 0.98rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e8e6e0;
}

.price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2d5f3f;
    font-family: 'Arial', sans-serif;
}

.select-service {
    padding: 10px 25px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.content-feature {
    background-color: #f0ede4;
    padding: 80px 40px;
    margin: 80px 0;
}

.feature-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.feature-text {
    flex: 1.2;
}

.feature-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.feature-text p {
    font-size: 1.05rem;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.feature-image {
    flex: 1;
    background-color: #d8d5ca;
}

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

.form-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container-editorial {
    background-color: #ffffff;
    padding: 50px;
    border: 1px solid #e8e6e0;
}

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

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: normal;
}

.form-intro p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

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

.main-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #2a2a2a;
    font-family: 'Arial', sans-serif;
}

.main-form input[type="text"],
.main-form input[type="email"],
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0cdc5;
    background-color: #fafaf8;
    font-size: 0.95rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.submit-btn {
    padding: 15px 40px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.magazine-footer {
    background-color: #2a2a2a;
    color: #cccccc;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #999999;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    color: #888888;
    font-style: italic;
    margin-top: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #88c3a8;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.8;
}

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

.cookie-btn.reject {
    background-color: #6a6a6a;
    color: #ffffff;
}

.page-hero {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 80px 40px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

.about-content {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-layout {
    display: flex;
    gap: 60px;
}

.about-main {
    flex: 2;
}

.about-main h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
    font-weight: normal;
}

.about-main h2:first-child {
    margin-top: 0;
}

.about-main p {
    font-size: 1.05rem;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.about-image-inline {
    margin: 40px 0;
    background-color: #e8e6e0;
}

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

.about-sidebar {
    flex: 1;
}

.highlight-text {
    font-size: 2.5rem;
    color: #2d5f3f;
    font-weight: bold;
}

.team-section {
    background-color: #f8f7f3;
    padding: 80px 40px;
    margin: 80px 0;
}

.team-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: normal;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-left: 3px solid #2d5f3f;
}

.team-member p {
    font-size: 1.05rem;
    color: #3a3a3a;
}

.cta-section-about {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.cta-content-centered {
    text-align: center;
    padding: 60px 40px;
    background-color: #f0ede4;
}

.cta-content-centered h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.cta-content-centered p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.cta-button-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.cta-button-primary:hover {
    background-color: #1f4429;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #6a6a6a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    margin-left: 15px;
}

.cta-button-secondary:hover {
    background-color: #4a4a4a;
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    background-color: #ffffff;
    border: 1px solid #e8e6e0;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-detail-content {
    flex: 1.5;
    padding: 40px;
}

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

.service-detail-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px 0;
    color: #2d5f3f;
    font-weight: normal;
}

.service-detail-content p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: #3a3a3a;
}

.service-pricing {
    margin: 30px 0 25px 0;
    padding: 20px;
    background-color: #f8f7f3;
    border-left: 3px solid #2d5f3f;
}

.price-label {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-family: 'Arial', sans-serif;
    margin-right: 10px;
}

.price-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d5f3f;
    font-family: 'Arial', sans-serif;
}

.services-cta {
    max-width: 1400px;
    margin: 100px auto 80px;
    padding: 0 40px;
}

.contact-content {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

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

.contact-info-column h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: normal;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2d5f3f;
    font-weight: normal;
}

.contact-block p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-form-column {
    flex: 1;
}

.contact-form-column h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.contact-form-column p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 30px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #2a2a2a;
    font-family: 'Arial', sans-serif;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0cdc5;
    background-color: #fafaf8;
    font-size: 0.95rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.thanks-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.thanks-content {
    background-color: #ffffff;
    padding: 60px;
    border: 1px solid #e8e6e0;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: normal;
}

.thanks-message {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #f0ede4;
}

.service-selected {
    font-size: 1rem;
    color: #2d5f3f;
}

.thanks-next-steps {
    margin: 40px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.thanks-next-steps ol {
    padding-left: 20px;
}

.thanks-next-steps ol li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.thanks-actions {
    margin-top: 40px;
}

.legal-page {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-content {
    background-color: #ffffff;
    padding: 60px;
    border: 1px solid #e8e6e0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: normal;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px 0;
    color: #2d5f3f;
    font-weight: normal;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    color: #1a1a1a;
    font-weight: normal;
}

.legal-content p {
    font-size: 1rem;
    color: #3a3a3a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 0.98rem;
    color: #3a3a3a;
}

.legal-content a {
    color: #2d5f3f;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table thead {
    background-color: #f8f7f3;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    border: 1px solid #e8e6e0;
    font-size: 0.95rem;
    font-weight: normal;
    color: #2d5f3f;
}

.cookie-table td {
    padding: 12px;
    border: 1px solid #e8e6e0;
    font-size: 0.9rem;
    color: #3a3a3a;
}

@media (max-width: 1024px) {
    .hero-content-wrapper,
    .intro-grid,
    .feature-layout,
    .about-layout,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-card:nth-child(even),
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .footer-columns,
    .team-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-text-column h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-header-editorial h2 {
        font-size: 1.8rem;
    }

    .form-container-editorial,
    .thanks-content,
    .legal-content {
        padding: 30px;
    }
}