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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #555;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #666;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #4a7c59;
}

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

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

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

.hero-magazine {
    margin-bottom: 60px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 56px;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
}

.container-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.intro-columns .container-magazine {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.col-left-wide {
    flex: 2;
}

.col-left-wide h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.col-left-wide p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.col-right-narrow {
    flex: 1;
}

.highlight-box {
    background-color: #f5f7f5;
    padding: 32px;
    border-left: 4px solid #4a7c59;
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #4a7c59;
}

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

.highlight-box ul li {
    padding: 8px 0;
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 24px;
}

.highlight-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.image-break {
    height: 500px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.services-grid-magazine {
    padding: 80px 0;
    background-color: #fafafa;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: calc(33.333% - 22px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ddd;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 24px 12px 24px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin: 0 24px 16px 24px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #4a7c59;
    margin: 0 24px 16px 24px;
}

.select-service-btn {
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 24px 24px 24px;
    border-radius: 4px;
}

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

.cta-inline {
    padding: 80px 0;
    background-color: #e8f0ea;
}

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

.cta-box-centered h3 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-box-centered p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #444;
}

.cta-link-arrow {
    display: inline-block;
    color: #4a7c59;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-link-arrow:hover {
    transform: translateX(8px);
}

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

.testimonials-magazine h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-cols {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 32px;
    border-left: 4px solid #4a7c59;
    border-radius: 4px;
}

.testimonial-item p {
    font-size: 16px;
    font-style: italic;
    color: #333;
    margin-bottom: 16px;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

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

.form-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-form-magazine {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

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

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

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

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

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

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 40px 20px 40px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #ccc;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    color: #4a7c59;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 20px;
    color: #555;
    margin-bottom: 12px;
    max-width: 600px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #3d6b4a;
}

.content-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.content-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #444;
    line-height: 1.8;
}

.content-page ul {
    margin-bottom: 16px;
    margin-left: 32px;
}

.content-page ul li {
    margin-bottom: 8px;
    color: #444;
}

.contact-info-block {
    background-color: #f5f7f5;
    padding: 32px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #4a7c59;
}

.contact-info-block p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

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

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

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

    .hero-overlay p {
        font-size: 18px;
    }

    .intro-columns .container-magazine {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

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