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

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

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

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

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a4d2e;
}

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

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

.nav-links a:hover {
    color: #1a4d2e;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.hero-section {
    position: relative;
    height: 550px;
    overflow: hidden;
    background-color: #1a4d2e;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(26,77,46,0.4), rgba(26,77,46,0.7));
}

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

.hero-subtitle {
    font-size: 22px;
    color: #e8f5e9;
    max-width: 700px;
}

.intro-section {
    padding: 80px 0;
    background: #fff;
}

.magazine-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
}

.main-column {
    flex: 2;
}

.main-column h2 {
    font-size: 36px;
    color: #1a4d2e;
    margin-bottom: 28px;
    line-height: 1.3;
}

.main-column h3 {
    font-size: 28px;
    color: #2c5f2d;
    margin: 40px 0 20px;
}

.main-column p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #444;
}

.inline-image {
    margin: 45px 0;
    background-color: #e8f5e9;
}

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

.sidebar-column {
    flex: 1;
}

.info-card {
    background: #f5f5f5;
    padding: 28px;
    border-left: 4px solid #1a4d2e;
    margin-bottom: 30px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #1a4d2e;
}

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

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

.service-quick-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.service-quick-links a:hover {
    color: #1a4d2e;
}

.highlight-box {
    background: #fff3e0;
    padding: 24px;
    border-radius: 4px;
}

.highlight-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.features-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.features-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a4d2e;
}

.feature-columns {
    display: flex;
    gap: 40px;
}

.feature-item {
    flex: 1;
    background-color: #e8f5e9;
}

.feature-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.feature-item h3 {
    font-size: 22px;
    margin: 24px 20px 12px;
    color: #1a4d2e;
}

.feature-item p {
    padding: 0 20px 24px;
    font-size: 16px;
    color: #555;
}

.trust-section {
    padding: 80px 0;
    background: #fff;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a4d2e;
}

.trust-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #444;
}

.citation {
    color: #1a4d2e;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.testimonial-block {
    background: #f5f5f5;
    padding: 32px;
    margin: 32px 0;
    border-left: 4px solid #4caf50;
}

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

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.services-showcase {
    padding: 80px 0;
    background: #fff;
}

.services-showcase h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a4d2e;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: #fafafa;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    color: #1a4d2e;
    margin-bottom: 16px;
}

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

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

.select-service-btn {
    background: #1a4d2e;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

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

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a4d2e;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.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 #ddd;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background: #1a4d2e;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2c5f2d;
}

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

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

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

.footer-column a:hover {
    color: #4caf50;
}

.reference-item {
    font-size: 13px;
    margin-bottom: 12px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    padding: 24px;
    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;
    color: #333;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background: #4caf50;
    color: #fff;
}

.cookie-btn.accept:hover {
    opacity: 0.9;
}

.cookie-btn.reject {
    background: #ddd;
    color: #333;
}

.cookie-btn.reject:hover {
    opacity: 0.9;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

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

    .feature-columns {
        flex-direction: column;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f9f9f9;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a4d2e;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service {
    background: #e8f5e9;
    padding: 20px;
    margin: 30px 0;
    font-weight: 600;
    color: #1a4d2e;
}

.home-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #1a4d2e;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.home-link:hover {
    background: #2c5f2d;
}

.page-header {
    background: linear-gradient(135deg, #1a4d2e 0%, #2c5f2d 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-intro {
    font-size: 20px;
    color: #e8f5e9;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.content-block h2 {
    font-size: 34px;
    color: #1a4d2e;
    margin-bottom: 24px;
}

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

.image-block {
    margin: 60px 0;
    background-color: #e8f5e9;
}

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

.values-section {
    background: #f9f9f9;
    padding: 60px;
    margin: 60px -20px;
}

.values-section h2 {
    font-size: 34px;
    color: #1a4d2e;
    margin-bottom: 40px;
    text-align: center;
}

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

.value-item {
    flex: 1;
    background: #fff;
    padding: 32px;
}

.value-item h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 16px;
}

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

.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a4d2e;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-pricing {
    margin: 28px 0;
    padding: 20px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    color: #2c5f2d;
    font-weight: 700;
}

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

.contact-info-section {
    background: #f9f9f9;
    padding: 60px;
    margin-bottom: 60px;
}

.contact-info-section h2 {
    font-size: 32px;
    color: #1a4d2e;
    margin-bottom: 32px;
}

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

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

.contact-info-item h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.legal-content h2 {
    font-size: 28px;
    color: #2c5f2d;
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin: 32px 0 16px;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .values-grid {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 36px;
    }
}