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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f39c12;
    color: #2d3436;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
}

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

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

.nav-links a:hover {
    color: #0984e3;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2d3436;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image-container img {
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 22px;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.intro-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #636e72;
}

.services-preview {
    padding: 80px 24px;
    background-color: #ecf0f1;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

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

.service-image img {
    width: 100%;
    height: 100%;
}

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

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

.service-content p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 24px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #0984e3;
}

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

.process-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

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

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

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #0984e3;
    margin-bottom: 16px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.cta-form-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #2d3436;
}

.form-container > p {
    text-align: center;
    color: #636e72;
    margin-bottom: 40px;
    font-size: 16px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    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: #0984e3;
}

.btn-submit {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #0984e3;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0770c7;
}

.info-section {
    padding: 80px 24px;
}

.info-split {
    display: flex;
    gap: 48px;
    align-items: center;
}

.info-block {
    flex: 1;
}

.info-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.info-block p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 16px;
}

.info-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.info-image img {
    width: 100%;
    height: 100%;
}

.testimonials-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #2d3436;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #0984e3;
    border-radius: 4px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #2d3436;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #636e72;
}

.disclaimer-section {
    padding: 60px 24px;
}

.disclaimer-content {
    max-width: 900px;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3436;
}

.disclaimer-content p {
    font-size: 14px;
    color: #636e72;
    line-height: 1.7;
}

.main-footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 24px 24px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    color: #b2bec3;
}

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

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

.footer-column ul li a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #636e72;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-cookie-accept {
    background-color: #0984e3;
    color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .service-card {
        flex-direction: column !important;
    }

    .service-image {
        min-height: 250px;
    }

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

    .info-split {
        flex-direction: column;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}