* {
    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;
}

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

a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e8449;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.container-full {
    width: 100%;
    padding: 0 40px;
}

.container-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.container-magazine.reverse {
    flex-direction: row-reverse;
}

.col-wide {
    flex: 2;
    min-width: 300px;
}

.col-narrow {
    flex: 1;
    min-width: 280px;
}

.site-header {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
}

.brand a {
    color: #27ae60;
}

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

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-image-wrap {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 22px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.intro-magazine {
    padding: 60px 0;
    background-color: #ffffff;
}

.intro-magazine h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-magazine p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.quick-fact {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #27ae60;
}

.fact-img {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    background-color: #ecf0f1;
}

.quick-fact h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
}

.quick-fact p {
    font-size: 16px;
    line-height: 1.6;
}

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

.services-preview h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-preview p {
    font-size: 18px;
    margin-bottom: 25px;
}

.link-arrow {
    display: inline-block;
    color: #27ae60;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

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

.service-card-mag {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-card-mag img {
    width: 100%;
    height: 400px;
    background-color: #ecf0f1;
}

.service-card-mag h4 {
    font-size: 26px;
    margin: 20px 25px 10px;
    color: #2c3e50;
}

.service-card-mag p {
    font-size: 16px;
    margin: 0 25px;
    color: #7f8c8d;
}

.price-tag {
    display: inline-block;
    margin: 15px 25px 25px;
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
}

.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.centered-heading {
    text-align: center;
    font-size: 46px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-top: 3px solid #27ae60;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

.form-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e8449;
}

.info-box {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

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

.info-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

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

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

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

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

.footer-col p {
    font-size: 15px;
    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;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
}

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

.btn-cookie {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero-small {
    padding: 80px 0 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 52px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-hero-small p {
    font-size: 18px;
    color: #7f8c8d;
}

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

.about-intro h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-side-img {
    width: 100%;
    height: 800px;
    background-color: #ecf0f1;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #27ae60;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.team-approach {
    padding: 80px 0;
}

.team-approach h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-approach p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-detail {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.approach-detail h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.cta-simple {
    padding: 80px 0;
    text-align: center;
    background-color: #27ae60;
    color: #ffffff;
}

.cta-simple h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-simple p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    margin: 0 10px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #ffffff;
    color: #27ae60;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

.services-detailed {
    padding: 60px 0;
}

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

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

.service-image-side {
    flex: 1;
    min-width: 300px;
}

.service-image-side img {
    width: 100%;
    height: 600px;
    background-color: #ecf0f1;
}

.service-content-side {
    flex: 1;
    min-width: 300px;
}

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

.service-content-side p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.service-includes li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-value {
    font-size: 40px;
    font-weight: 700;
    color: #27ae60;
}

.price-unit {
    font-size: 18px;
    color: #7f8c8d;
}

.pricing-note {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.pricing-note h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.pricing-note ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.pricing-note ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #27ae60;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
}

.note-small {
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 10px;
}

.company-data {
    background-color: #f8f9fa;
    padding: 25px;
    border-left: 4px solid #27ae60;
}

.company-data p {
    font-size: 16px;
    line-height: 1.8;
}

.how-to-reach {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.how-to-reach h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.thanks-page {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #27ae60;
}

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

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f8f4;
    border-left: 4px solid #27ae60;
}

.service-selected {
    font-size: 18px;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin: 50px 0;
    padding: 30px;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ol {
    margin-left: 25px;
}

.next-steps ol li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #27ae60;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookies-table th {
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 600;
}

.cookies-table td {
    font-size: 15px;
}

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

    .hero-overlay p {
        font-size: 18px;
    }

    .container-magazine,
    .service-block {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 15px;
    }

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

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

    .cta-simple h2 {
        font-size: 34px;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        margin: 10px 0;
    }
}