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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    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-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand h1 {
    font-size: 28px;
    color: #2d5016;
    font-weight: 700;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 5px 12px;
    background: #ecf0f1;
    border-radius: 3px;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2d5016;
}

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

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    max-width: 700px;
}

.hero-overlay h2 {
    font-size: 42px;
    line-height: 1.3;
    color: #2d5016;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 20px;
    color: #555;
    font-style: italic;
}

.intro-columns {
    display: flex;
    gap: 40px;
    padding: 0 40px;
    margin-bottom: 80px;
}

.column-main {
    flex: 2;
}

.column-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-intro h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.sidebar-card {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2d5016;
}

.sidebar-card ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.sidebar-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.accent-card {
    border-left-color: #e67e22;
    padding: 0;
    overflow: hidden;
    background-color: #fff3e0;
}

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

.full-width-section {
    padding: 80px 40px;
    margin-bottom: 60px;
}

.dark-bg {
    background: #1a2f1a;
    color: #fff;
}

.full-width-section h3 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #b8c9b8;
}

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

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card-mag {
    background: #fff;
    width: calc(50% - 20px);
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

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

.service-image {
    width: 45%;
    background-color: #e8f5e9;
}

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

.service-content {
    width: 55%;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5016;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1;
}

.price {
    font-size: 22px;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 15px;
}

.select-service-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.select-service-btn:active {
    transform: scale(0.98);
}

.testimonial-section {
    padding: 60px 40px;
    background: #f1f8f4;
}

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

.testimonial {
    flex: 1;
    background: white;
    padding: 40px;
    border-left: 5px solid #27ae60;
    font-style: italic;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 14px;
}

.form-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #2d5016 0%, #1a2f1a 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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

.form-intro h3 {
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.submit-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #229954;
}

.submit-btn:active {
    transform: scale(0.98);
}

.disclaimer-section {
    padding: 40px;
    background: #fff9e6;
    border-top: 2px solid #f39c12;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.site-footer {
    background: #1a1a1a;
    color: #b8b8b8;
    padding: 50px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-col a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #27ae60;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .intro-columns {
        flex-direction: column;
    }

    .service-card-mag {
        width: 100%;
        flex-direction: column;
    }

    .service-image,
    .service-content {
        width: 100%;
    }

    .service-image {
        height: 250px;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

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

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

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 25px;
    }

    .hero-overlay h2 {
        font-size: 28px;
    }

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