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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

.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-buttons {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background-color: #2d5a3d;
    color: #fff;
}

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

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

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

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

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-section .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5a3d;
}

.magazine-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

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

.hero-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-primary {
    flex: 1.2;
}

.hero-text-primary h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.hero-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.info-grid-magazine {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
}

.column-main {
    flex: 2;
}

.column-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.column-main h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    color: #2d5a3d;
}

.column-main p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.article-image {
    width: 100%;
    height: auto;
    margin: 25px 0;
    background-color: #e8e8e8;
    object-fit: cover;
}

.cta-inline {
    margin: 30px 0;
    padding: 25px;
    background-color: #f5f9f6;
    border-left: 4px solid #2d5a3d;
}

.cta-link {
    color: #2d5a3d;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #3d7a5d;
    text-decoration: underline;
}

.column-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #3d7a5d;
    text-decoration: underline;
}

.sidebar-card.highlight {
    background-color: #2d5a3d;
    color: #fff;
}

.sidebar-card.highlight h3 {
    color: #fff;
}

.sidebar-card.highlight p {
    color: #e8e8e8;
    margin-bottom: 15px;
}

.btn-sidebar {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-sidebar:hover {
    background-color: #f0f0f0;
}

.services-preview {
    margin-bottom: 60px;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

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

.service-card h3 {
    font-size: 20px;
    padding: 20px 20px 10px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.service-card .price {
    padding: 10px 20px 20px;
    font-size: 22px;
    font-weight: 700;
    color: #2d5a3d;
}

.contact-form-section {
    background-color: #f5f9f6;
    padding: 60px 40px;
    margin: 60px -40px;
}

.form-container-magazine {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.consultation-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px 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;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #2d5a3d;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #2d5a3d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.references-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.reference-list {
    list-style-position: inside;
    font-size: 14px;
}

.reference-list li {
    margin-bottom: 10px;
}

.reference-list a {
    color: #2d5a3d;
    text-decoration: none;
}

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

.disclaimer-section {
    margin: 40px 0;
    padding: 25px;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

.services-page,
.about-page,
.contact-page,
.thanks-page,
.legal-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

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

.page-header-services h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 18px;
    color: #555;
}

.services-detailed {
    margin-bottom: 60px;
}

.service-block {
    display: flex;
    gap: 60px;
    margin-bottom: 70px;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left img,
.service-content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.service-content-right h2,
.service-content-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content-right p,
.service-content-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

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

.service-benefits li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 20px 0;
}

.btn-service {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2d5a3d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cta-services-bottom,
.cta-about {
    text-align: center;
    padding: 60px 40px;
    background-color: #f5f9f6;
    border-radius: 8px;
}

.cta-services-bottom h2,
.cta-about h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-services-bottom p,
.cta-about p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.btn-cta-large {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2d5a3d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #3d7a5d;
}

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

.about-intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.intro-image {
    flex: 1;
    background-color: #e8e8e8;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.mission-section,
.values-section,
.approach-section,
.team-section,
.how-we-work {
    margin-bottom: 70px;
}

.mission-section h2,
.values-section h2,
.approach-section h2,
.team-section h2,
.how-we-work h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.mission-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

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

.value-card {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.approach-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.approach-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.approach-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.team-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.team-image {
    background-color: #e8e8e8;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.work-steps {
    display: flex;
    gap: 30px;
}

.work-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d5a3d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.work-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 18px;
    color: #555;
}

.contact-main-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5a3d;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    padding: 20px;
    background-color: #f5f9f6;
    border-left: 4px solid #2d5a3d;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.contact-image-section {
    flex: 1;
    background-color: #e8e8e8;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.thanks-message {
    margin-bottom: 40px;
}

.thanks-message p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d5a3d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2d5a3d;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #fff;
}

.thanks-contact-info {
    padding: 25px;
    background-color: #f5f9f6;
    border-radius: 8px;
}

.thanks-contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 5px;
}

.legal-page {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-section {
    margin-bottom: 35px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.legal-section h3 {
    font-size: 20px;
    margin: 20px 0 12px;
    color: #1a1a1a;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0 15px 25px;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #444;
}

.legal-section a {
    color: #2d5a3d;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

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

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

    .hero-content-split,
    .info-grid-magazine,
    .service-block,
    .about-intro-grid,
    .approach-layout,
    .contact-main-content {
        flex-direction: column;
    }

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

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

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

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

    .value-card {
        flex: 0 0 100%;
    }

    .work-steps {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}