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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    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;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

.hero-image-large {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #3d5a46;
}

.hero-image-large img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 80px 60px 40px;
}

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

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
}

.intro-columns {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.col-left {
    flex: 2;
}

.col-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
    line-height: 1.3;
}

.col-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.col-right {
    flex: 1;
}

.highlight-box {
    background-color: #4a7c59;
    color: white;
    padding: 40px;
    border-radius: 2px;
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.expertise-list {
    list-style: none;
    margin-bottom: 30px;
}

.expertise-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

.expertise-list li:last-child {
    border-bottom: none;
}

.cta-link {
    display: inline-block;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #ffed4e;
}

.feature-grid {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.feature-card {
    flex: 1;
    min-width: 320px;
    background-color: #fafafa;
    overflow: hidden;
}

.card-image {
    height: 280px;
    overflow: hidden;
    background-color: #3d5a46;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.feature-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.card-content p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.content-wrapper-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.section-intro {
    font-size: 19px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-large {
    flex: 2;
    background-color: white;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-content {
    flex: 1;
    padding: 50px;
}

.service-label {
    display: inline-block;
    background-color: #ffd700;
    color: #2c2c2c;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 25px;
}

.btn-service {
    background-color: #4a7c59;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

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

.service-image {
    flex: 1;
    overflow: hidden;
    background-color: #3d5a46;
}

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

.service-small {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-small h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-small p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.service-small .service-price {
    font-size: 28px;
    margin-bottom: 20px;
}

.btn-service-small {
    background-color: #2c2c2c;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    width: 100%;
}

.btn-service-small:hover {
    background-color: #1a1a1a;
}

.cta-center {
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    padding: 18px 50px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #1a1a1a;
}

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

.testimonials-inline h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 40px;
    border-left: 4px solid #4a7c59;
    font-style: italic;
}

.testimonial p {
    font-size: 19px;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

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

.form-container-magazine {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-header p {
    font-size: 17px;
    color: #666;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-submit {
    margin-top: 15px;
}

.btn-submit {
    background-color: #4a7c59;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff9e6;
}

.content-wrapper-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.disclaimer-box {
    background-color: white;
    padding: 40px;
    border-left: 4px solid #ffd700;
}

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

.disclaimer-box p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

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

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

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

.thanks-box {
    max-width: 700px;
    text-align: center;
    background-color: white;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 64px;
    color: #4a7c59;
    margin-bottom: 30px;
}

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

.thanks-box p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-service {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #4a7c59;
}

.thanks-service strong {
    color: #2c2c2c;
}

.btn-home {
    display: inline-block;
    background-color: #4a7c59;
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-home:hover {
    background-color: #3d6849;
}

.services-list-full {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detailed {
    display: flex;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1.2;
    padding: 60px;
}

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

.service-description {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-includes {
    margin-bottom: 30px;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

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

.service-pricing {
    margin-bottom: 30px;
}

.price-display {
    font-size: 42px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #666;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    background-color: #3d5a46;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.service-detailed:hover .service-detail-image img {
    transform: scale(1.03);
}

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

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

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

    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

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

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