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

html {
    scroll-behavior: smooth;
}

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: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

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

.nav-menu li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #27ae60;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.split-container {
    display: flex;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-split {
    background-color: #f8f9fa;
}

.hero-split .split-container {
    min-height: 650px;
}

.hero-content {
    padding: 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #555;
}

.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

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

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
    background-color: #27ae60;
    color: #ffffff;
}

.btn-large:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.3);
}

.trust-strip {
    background-color: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
}

.trust-text {
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.problem-section {
    padding: 80px 0;
}

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

.content-block {
    padding: 60px;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.value-proposition {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.cards-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-preview-list {
    padding: 40px;
}

.preview-item {
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #27ae60;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.preview-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.preview-item p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.price-tag {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
}

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

.cta-banner h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 30px;
}

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

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

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

.testimonial-author {
    font-weight: 600;
    color: #27ae60;
    font-size: 16px;
}

.process-section {
    padding: 80px 20px;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.full-services-preview {
    padding: 80px 0;
}

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

.services-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #2c3e50;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.order-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group a {
    color: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.final-cta {
    padding: 80px 0;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    line-height: 1.7;
    color: #bbb;
}

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #229954;
}

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

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

.page-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
}

.services-grid-section {
    padding: 60px 20px;
}

.service-card-full {
    margin-bottom: 60px;
}

.service-details {
    padding: 50px;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-description {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

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

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #2c3e50;
}

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

.pricing-block {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #27ae60;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

.price-value {
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 5px;
}

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

.pricing-faq {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

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

.story-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.values-section {
    padding: 80px 0;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 18px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.7;
}

.values-list strong {
    color: #27ae60;
}

.team-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.role {
    font-size: 14px;
    color: #27ae60;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.numbers-section {
    padding: 80px 20px;
}

.stats-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #555;
}

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

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

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

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

.contact-info-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.contact-info-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #27ae60;
}

.contact-info-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.contact-info-box a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.contact-form-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.contact-form-section p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
}

.map-section {
    padding: 60px 20px;
}

.map-placeholder {
    background-color: #e0e0e0;
    padding: 80px 40px;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-faq {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

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

.cta-contact h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

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

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

.legal-content a {
    color: #27ae60;
    text-decoration: none;
}

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

.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.thanks-content {
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

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

.thanks-lead {
    font-size: 22px;
    color: #555;
    margin-bottom: 35px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 35px;
    text-align: left;
}

.thanks-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #2c3e50;
    line-height: 1.7;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 35px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.steps-list {
    margin-left: 20px;
}

.steps-list li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-trust {
    padding: 60px 20px;
    text-align: center;
}

.thanks-trust h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-trust p {
    font-size: 18px;
    color: #555;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .split-container {
        flex-direction: column;
        min-height: auto;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 30px;
    }

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

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

    .content-block {
        padding: 40px 30px;
    }

    .content-block h2 {
        font-size: 28px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .service-details {
        padding: 30px 20px;
    }

    .thanks-content {
        padding: 40px 25px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}