* {
    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: #2c3e50;
    background: #ffffff;
}

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #e8ecef;
    border-radius: 3px;
    background: #f8f9fa;
}

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

.nav-menu li a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu li a:hover {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.hero-text-block {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-text-block h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-block p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #ffffff;
    color: #3498db;
    padding: 14px 36px;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.intro-narrow {
    padding: 80px 20px;
    background: #f8f9fa;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.image-text-overlay {
    padding: 100px 20px;
    background: #ffffff;
}

.overlay-block {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

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

.text-float-left {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 6px;
}

.text-float-left h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.text-float-left p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

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

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.story-section img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
}

.benefits-visual {
    padding: 100px 20px;
    background: #f8f9fa;
}

.benefit-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.benefit-card h3 {
    padding: 25px 25px 10px 25px;
    font-size: 1.3rem;
    color: #2c3e50;
}

.benefit-card p {
    padding: 0 25px 25px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.trust-section {
    padding: 80px 20px;
    background: #ffffff;
}

.container-medium {
    max-width: 900px;
    margin: 0 auto;
}

.trust-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.services-preview {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

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

.service-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-item {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.form-section {
    padding: 100px 20px;
    background: #ffffff;
}

.form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.main-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff8e1;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px 20px;
}

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

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

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-cookie-alt:hover {
    background: #ffffff;
    color: #34495e;
}

.page-hero {
    padding: 80px 20px 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

.content-section {
    padding: 60px 20px;
    background: #ffffff;
}

.content-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
}

.content-section h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

.values-section h2 {
    font-size: 1.9rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.mission-section {
    padding: 60px 20px;
    background: #ffffff;
}

.mission-section h2 {
    font-size: 1.9rem;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.services-detailed {
    padding: 60px 20px;
    background: #ffffff;
}

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

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

.service-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

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

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

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

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.cta-section {
    padding: 80px 20px;
    background: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-section .btn-secondary {
    background: #ffffff;
    color: #3498db;
    border-color: #ffffff;
}

.cta-section .btn-secondary:hover {
    background: #ecf0f1;
    border-color: #ecf0f1;
}

.contact-section {
    padding: 60px 20px;
    background: #ffffff;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    color: #555;
}

.thanks-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

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

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

.legal-section {
    padding: 60px 20px;
    background: #ffffff;
}

.legal-section h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-section ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

.legal-section ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #555;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

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

@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #ffffff;
        border-top: 1px solid #e8ecef;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-text-block p {
        font-size: 1.1rem;
    }

    .text-float-left {
        position: static;
        transform: none;
        margin-top: 20px;
    }

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

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

    .service-showcase {
        flex-direction: column;
        align-items: center;
    }

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

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

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

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