* {
    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-color: #fafafa;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 11px;
    z-index: 1000;
    letter-spacing: 0.5px;
}

.floating-nav {
    position: fixed;
    top: 38px;
    right: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 14px;
    transition: color 0.3s;
}

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    margin-top: 38px;
    background-color: #2a2a2a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 620px;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 50px 55px;
    border-radius: 3px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-overlay p {
    font-size: 19px;
    color: #5a5a5a;
    font-weight: 400;
}

.intro-block {
    padding: 90px 60px;
    background-color: #ffffff;
}

.intro-content {
    max-width: 780px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.image-text-overlap {
    padding: 100px 60px;
    background-color: #f4f4f4;
}

.overlap-container {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.overlap-container img {
    width: 55%;
    height: auto;
    border-radius: 2px;
    background-color: #d4d4d4;
    object-fit: cover;
}

.overlap-text {
    position: absolute;
    right: 0;
    width: 50%;
    background-color: rgba(26, 26, 26, 0.94);
    color: #ffffff;
    padding: 55px 50px;
    border-radius: 2px;
}

.overlap-text h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 22px;
    color: #ffffff;
}

.overlap-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #e0e0e0;
}

.trust-segment {
    padding: 110px 60px;
    background-color: #ffffff;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 35px;
    text-align: center;
}

.trust-content > p {
    font-size: 18px;
    color: #4a4a4a;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

.trust-points {
    display: flex;
    gap: 45px;
    justify-content: space-between;
}

.point {
    flex: 1;
}

.point h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.point p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
}

.visual-break {
    height: 60vh;
    overflow: hidden;
    background-color: #2a2a2a;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.testimonial-inline {
    padding: 85px 60px;
    background-color: #f9f9f9;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.7;
    border-left: 4px solid #1a1a1a;
    padding-left: 40px;
}

.testimonial-inline cite {
    display: block;
    margin-top: 25px;
    font-size: 16px;
    font-style: normal;
    color: #6a6a6a;
}

.benefits-visual {
    padding: 100px 60px;
    background-color: #ffffff;
}

.benefits-visual h2 {
    font-size: 44px;
    font-weight: 400;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 70px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 35px);
    min-width: 320px;
    background-color: #fafafa;
    border-radius: 3px;
    overflow: hidden;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background-color: #d4d4d4;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 25px 25px 10px;
}

.benefit-card p {
    font-size: 15px;
    color: #5a5a5a;
    padding: 0 25px 15px;
    line-height: 1.6;
}

.benefit-card .price {
    display: block;
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 15px 25px 25px;
}

.cta-visual {
    padding: 120px 60px;
    background-image: linear-gradient(rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.75)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #2a2a2a;
}

.cta-overlay-box {
    max-width: 650px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.96);
    padding: 55px 50px;
    border-radius: 3px;
}

.cta-overlay-box h2 {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cta-overlay-box > p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 35px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.final-visual {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background-color: #2a2a2a;
}

.final-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.final-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background-color: rgba(26, 26, 26, 0.6);
    padding: 40px 60px;
    border-radius: 3px;
}

.final-text p {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.5;
}

.site-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 60px 40px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
}

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

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

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

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
}

.disclaimer p {
    font-size: 12px;
    color: #909090;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 25px 40px;
    z-index: 1001;
    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: 30px;
}

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

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

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

.cookie-btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.page-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
    margin-top: 38px;
    background-color: #2a2a2a;
}

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

.page-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.page-hero-text h1 {
    font-size: 56px;
    font-weight: 300;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.about-story {
    padding: 90px 60px;
    background-color: #ffffff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 40px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

.values-visual {
    background-color: #f4f4f4;
}

.value-block {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.value-block img {
    width: 50%;
    object-fit: cover;
    background-color: #d4d4d4;
}

.value-text {
    width: 50%;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.value-text h3 {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.value-text p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
}

.team-approach {
    padding: 90px 60px;
    background-color: #ffffff;
}

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

.approach-content h2 {
    font-size: 40px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

.services-intro {
    padding: 70px 60px;
    background-color: #f9f9f9;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-detail {
    padding: 60px 60px 100px;
    background-color: #ffffff;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    background-color: #d4d4d4;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 25px;
}

.services-cta {
    padding: 80px 60px;
    background-color: #f4f4f4;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 55px 50px;
    border-radius: 3px;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 30px;
}

.cta-link {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #000000;
}

.page-hero-simple {
    padding: 120px 60px 80px;
    background-color: #1a1a1a;
    text-align: center;
    margin-top: 38px;
}

.page-hero-simple h1 {
    font-size: 50px;
    font-weight: 300;
    color: #ffffff;
}

.contact-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 60px;
    background-color: #ffffff;
}

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

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.detail-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    background-color: #d4d4d4;
}

.contact-note {
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
}

.note-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.note-content p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
}

.thanks-hero {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-actions {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.thanks-link {
    display: inline-block;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.thanks-link:hover {
    background-color: #000000;
}

.thanks-link.secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.thanks-link.secondary:hover {
    background-color: #f4f4f4;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    background-color: #d4d4d4;
    object-fit: cover;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 60px;
}

.legal-page h1 {
    font-size: 44px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 25px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin: 15px 0 15px 25px;
}

.legal-content ul li {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .floating-nav {
        flex-direction: column;
        gap: 20px;
        top: 50px;
        right: 20px;
        padding: 15px 20px;
    }

    .hero-overlay {
        left: 30px;
        padding: 35px 40px;
    }

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

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

    .overlap-container img {
        width: 100%;
    }

    .overlap-text {
        position: static;
        width: 100%;
    }

    .trust-points {
        flex-direction: column;
    }

    .benefits-grid {
        gap: 25px;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 25px);
    }

    .value-block,
    .value-block.reverse {
        flex-direction: column;
    }

    .value-block img,
    .value-text {
        width: 100%;
    }

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

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

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

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

@media (max-width: 768px) {
    .hero-overlay {
        left: 20px;
        right: 20px;
        padding: 30px;
    }

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

    .benefit-card {
        flex: 1 1 100%;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }
}