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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid #ddd;
}

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.6;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #333;
}

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

.hero-content {
    max-width: 1200px;
    margin: -120px auto 0;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    max-width: 800px;
}

.hero-subtitle {
    font-size: 22px;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    max-width: 700px;
}

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

.intro-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.column-left {
    max-width: 65%;
}

.column-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.column-left p {
    margin-bottom: 20px;
}

.column-right {
    max-width: 30%;
    margin-left: auto;
}

.quote-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-left: 4px solid #1a1a1a;
}

.quote-box p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
}

.quote-author {
    display: block;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-image-section {
    margin: 60px 0;
    text-align: center;
}

.featured-image-section img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

.section-title-offset {
    font-size: 42px;
    margin-bottom: 50px;
    padding-left: 0;
}

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

.service-card-mag {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #ddd;
}

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

.service-card-mag h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
}

.service-card-mag p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 20px 15px;
    color: #444;
}

.price-tag {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 20px;
    color: #2a7d2e;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-inline {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.testimonials-inline h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 30px;
    border-left: 3px solid #2a7d2e;
}

.testimonial-item p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    color: #666;
}

.cta-inline {
    padding: 100px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2a7d2e;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-wrapper-magazine {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper-magazine h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    font-family: 'Georgia', serif;
}

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

.btn-submit {
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

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

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

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

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #2a7d2e;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

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

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

.page-hero-small {
    padding: 80px 0 40px;
    background-color: #f4f4f4;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-subtitle-small {
    font-size: 20px;
    color: #666;
}

.about-page,
.services-page,
.contact-page,
.legal-page,
.thanks-page {
    min-height: 60vh;
}

.about-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-intro {
    margin-bottom: 50px;
}

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.about-col-text {
    flex: 1;
}

.about-col-text h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.about-col-text p {
    margin-bottom: 15px;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background-color: #f9f9f9;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #2a7d2e;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.about-team {
    margin-top: 50px;
}

.about-team h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.disclaimer-box {
    background-color: #fff9e6;
    border: 1px solid #f4d03f;
    padding: 30px;
    margin-top: 50px;
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #856404;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a7d2e;
    font-weight: bold;
}

.price-display {
    font-size: 28px;
    font-weight: bold;
    color: #2a7d2e;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.service-detail-image {
    flex: 0 0 450px;
}

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

.cta-services {
    padding: 80px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

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

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

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

.form-description {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.container-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-legal h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.last-updated {
    font-size: 15px;
    color: #999;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

.container-legal h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.container-legal h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.container-legal p {
    margin-bottom: 15px;
}

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

.container-legal ul li {
    margin-bottom: 10px;
}

.container-legal a {
    color: #2a7d2e;
    text-decoration: underline;
}

.thanks-content {
    padding: 100px 0;
    background-color: #ffffff;
}

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-box h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2a7d2e;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 15px;
}

.selected-service-info {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
    font-style: italic;
}

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

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

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

    .hero-content h1 {
        font-size: 36px;
    }

    .column-left,
    .column-right {
        max-width: 100%;
    }

    .services-grid-magazine {
        flex-direction: column;
    }

    .service-card-mag {
        flex: 0 0 100%;
    }

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

    .service-detail-image {
        flex: 0 0 100%;
    }

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

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

    .stats-section {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}