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

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

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

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

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

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-list a:hover {
    color: #0066cc;
}

.ad-label {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 4px;
}

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

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c3e50;
}

.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));
}

.hero-content-layer {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #f0f0f0;
    line-height: 1.5;
}

.intro-story {
    padding: 80px 0;
    background: #fafafa;
}

.story-block {
    font-size: 18px;
    line-height: 1.8;
}

.opening-line {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.story-block p {
    margin-bottom: 20px;
}

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

.problem-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

.problem-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.problem-visual {
    flex: 1;
    background: #34495e;
}

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

.insight-layer {
    padding: 80px 0;
    background: #2c3e50;
    color: #ffffff;
}

.insight-content h2 {
    font-size: 32px;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.trust-markers {
    padding: 80px 0;
}

.markers-grid {
    display: flex;
    gap: 40px;
}

.marker-card {
    flex: 1;
    padding: 32px;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.marker-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.marker-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.testimonials-inline {
    padding: 80px 0;
    background: #fafafa;
}

.testimonial-block {
    margin-bottom: 40px;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-block blockquote {
    border-left: 4px solid #0066cc;
    padding-left: 28px;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    font-style: normal;
    color: #666;
}

.benefits-reveal {
    padding: 80px 0;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

.section-heading.centered {
    text-align: center;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

.benefit-visual-wrapper {
    background: #34495e;
}

.benefit-visual-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image-wrapper {
    background: #34495e;
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-top: auto;
    margin-bottom: 20px;
}

.btn-select-service {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-select-service:hover {
    background: #0052a3;
}

.btn-select-service.selected {
    background: #28a745;
}

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

.form-wrapper {
    background: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-wrapper > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

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

.form-group select:disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: #0052a3;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.final-assurance {
    padding: 80px 0;
    background: #fafafa;
}

.assurance-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

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

.disclaimer-box {
    background: #ffffff;
    border: 2px solid #ffcc00;
    padding: 28px;
    border-radius: 8px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px 0;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-cookie.accept {
    background: #28a745;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background: #6c757d;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #5a6268;
}

.thanks-wrapper {
    padding: 120px 0;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 48px;
    height: 48px;
    fill: #ffffff;
}

.thanks-wrapper h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-wrapper p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #555;
}

.thanks-service {
    font-size: 20px;
    font-weight: 600;
    color: #0066cc;
    margin: 32px 0;
}

.btn-back-home {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 32px;
    transition: background 0.2s;
}

.btn-back-home:hover {
    background: #0052a3;
}

.about-hero {
    padding: 80px 0;
    background: #2c3e50;
    color: #ffffff;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.6;
}

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

.about-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

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

.services-list h1 {
    font-size: 42px;
    margin-bottom: 48px;
    font-weight: 700;
    text-align: center;
}

.contact-hero {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-details {
    font-size: 17px;
    line-height: 2;
}

.contact-details strong {
    display: inline-block;
    width: 200px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 700;
}

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

.legal-page ul {
    margin: 20px 0;
    padding-left: 32px;
}

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

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .problem-wrapper {
        flex-direction: column;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}