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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a8b5f;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 35px;
    padding: 15px 0;
    border-top: 1px solid #f0f2f4;
}

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

.main-nav a:hover {
    color: #1a8b5f;
}

.hero-editorial {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 139, 95, 0.3), rgba(44, 62, 80, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-text {
    font-size: 20px;
    color: #ecf0f1;
    font-weight: 300;
}

.editorial-content {
    padding: 80px 0;
}

.intro-section {
    margin-bottom: 60px;
}

.drop-cap::first-letter {
    font-size: 68px;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    margin: 8px 12px 0 0;
    color: #1a8b5f;
}

.intro-section p {
    font-size: 19px;
    margin-bottom: 24px;
}

.pullquote {
    margin: 60px 0;
    padding: 40px 60px;
    background-color: #f8fafa;
    border-left: 5px solid #1a8b5f;
}

.pullquote blockquote {
    font-size: 24px;
    font-style: italic;
    color: #34495e;
    line-height: 1.5;
}

.content-block {
    margin-bottom: 70px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 600;
}

.content-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a8b5f;
    font-weight: 600;
}

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

.inline-image-left {
    float: left;
    width: 48%;
    margin: 0 30px 20px 0;
}

.inline-image-right {
    float: right;
    width: 48%;
    margin: 0 0 20px 30px;
}

.inline-image-full {
    margin: 40px 0;
}

.inline-image-left img,
.inline-image-right img,
.inline-image-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.grid-columns-two {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.grid-columns-two .column {
    flex: 1;
}

.testimonial-inline {
    margin: 60px 0;
}

.testimonial-card {
    background-color: #ecf8f3;
    padding: 35px 40px;
    border-radius: 6px;
    border-left: 4px solid #1a8b5f;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: #1a8b5f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-primary-large {
    display: inline-block;
    background-color: #1a8b5f;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #157a52;
}

.services-preview {
    margin: 80px 0;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.service-cards-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-mag {
    width: calc(50% - 15px);
    background-color: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card-mag:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #f0f2f4;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.card-content p {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #1a8b5f;
    margin-bottom: 18px;
}

.btn-select-service {
    background-color: #1a8b5f;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-section-center {
    text-align: center;
    margin: 80px 0;
    padding: 60px 40px;
    background-color: #f8fafa;
    border-radius: 8px;
}

.cta-section-center h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-section-center p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-section > .container-narrow > p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe4e8;
    border-radius: 5px;
    font-size: 15px;
    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: #1a8b5f;
}

.btn-submit {
    background-color: #1a8b5f;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.references-section {
    background-color: #f8fafa;
    padding: 50px 0;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    padding-left: 24px;
}

.references-list li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #7f8c8d;
}

.references-list a {
    color: #1a8b5f;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #fef9e7;
    border-top: 1px solid #f4e5b2;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background-color: #1a8b5f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #157a52;
}

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

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

.services-page-header {
    background: linear-gradient(135deg, #1a8b5f, #34a87b);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.services-page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.services-page-header p {
    font-size: 19px;
    color: #ecf0f1;
}

.services-grid {
    padding: 80px 0;
}

.service-item-full {
    margin-bottom: 60px;
    background-color: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

.service-layout {
    display: flex;
}

.service-image-side {
    width: 45%;
    background-size: cover;
    background-position: center;
    background-color: #f0f2f4;
}

.service-content-side {
    width: 55%;
    padding: 45px;
}

.service-content-side h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.service-content-side p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-content-side .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a8b5f;
    margin: 20px 0;
}

.about-hero {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.about-hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    background-color: #f8fafa;
    padding: 30px;
    border-radius: 6px;
    border-top: 4px solid #1a8b5f;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.value-card p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-page-header {
    background: linear-gradient(135deg, #1a8b5f, #157a52);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.contact-page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.contact-page-header p {
    font-size: 19px;
    color: #ecf0f1;
}

.contact-content {
    padding: 80px 0;
}

.contact-info-section {
    background-color: #f8fafa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.info-grid {
    display: flex;
    gap: 50px;
}

.info-item {
    flex: 1;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a8b5f;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #34495e;
}

.legal-page p,
.legal-page li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
}

.legal-page ul,
.legal-page ol {
    padding-left: 30px;
    margin-bottom: 20px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a8b5f;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-container .btn-primary {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 17px;
    }

    .service-cards-magazine {
        flex-direction: column;
    }

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

    .inline-image-left,
    .inline-image-right {
        float: none;
        width: 100%;
        margin: 20px 0;
    }

    .grid-columns-two {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .service-image-side {
        height: 250px;
    }

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

    .info-grid {
        flex-direction: column;
        gap: 30px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}