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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.97);
    color: white;
    padding: 24px;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(8px);
}

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

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

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

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

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.cookie-buttons button:first-child {
    background: #4299e1;
    color: white;
}

.cookie-buttons button:first-child:hover {
    background: #3182ce;
}

.cookie-buttons button:last-child {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-buttons button:last-child:hover {
    background: rgba(255, 255, 255, 0.1);
}

.site-header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2d3748;
}

.ad-disclosure {
    font-size: 13px;
    color: #718096;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 4px;
    background: #f7fafc;
}

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e8f4f8;
}

.hero-overlay {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.85), rgba(45, 55, 72, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.story-intro {
    padding: 120px 40px;
    background: white;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #1a202c;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.narrow-content img {
    width: 100%;
    margin: 48px 0;
    border-radius: 8px;
}

.problem-section {
    padding: 100px 40px;
    background: #f7fafc;
}

.split-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #e8f4f8;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 28px;
    color: #1a202c;
}

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

.insight-section {
    padding: 120px 40px;
    background: white;
}

.trust-section {
    padding: 100px 40px;
    background: #edf2f7;
}

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

.container h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.trust-card {
    flex: 1;
    background: white;
    padding: 42px 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.testimonials-section {
    padding: 100px 40px;
    background: white;
}

.testimonial {
    background: #f7fafc;
    padding: 36px;
    border-left: 4px solid #4299e1;
    margin-bottom: 32px;
    border-radius: 4px;
}

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

.testimonial cite {
    font-size: 15px;
    color: #718096;
    font-style: normal;
    font-weight: 600;
}

.benefits-reveal {
    padding: 100px 40px;
    background: #f7fafc;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 0;
}

.service-image {
    width: 420px;
    height: 380px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.service-content {
    padding: 48px;
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 28px;
}

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

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #2d3748;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 24px;
}

.cta-button {
    background: #4299e1;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button:hover {
    background: #3182ce;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.form-section {
    padding: 100px 40px;
    background: white;
}

.contact-form {
    background: #f7fafc;
    padding: 48px;
    border-radius: 8px;
    margin-top: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    transition: border-color 0.2s;
}

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

.submit-button {
    background: #48bb78;
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.submit-button:hover {
    background: #38a169;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.disclaimer-section {
    padding: 60px 40px;
    background: #edf2f7;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #718096;
    text-align: center;
}

.site-footer {
    background: #1a202c;
    color: white;
    padding: 80px 40px 30px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-section {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-hero {
    position: relative;
    height: 45vh;
    overflow: hidden;
}

.about-content {
    padding: 100px 40px;
    background: white;
}

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

.about-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a202c;
}

.about-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
}

.about-values {
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.value-item img {
    width: 48%;
    border-radius: 8px;
    background-color: #e8f4f8;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.value-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.team-section {
    margin: 100px 0;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.team-intro {
    font-size: 17px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #4299e1;
    margin-bottom: 8px;
}

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

.commitment-section {
    margin-top: 80px;
}

.commitment-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.commitment-grid {
    display: flex;
    gap: 32px;
}

.commitment-card {
    flex: 1;
    background: #f7fafc;
    padding: 36px 28px;
    border-radius: 8px;
}

.commitment-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a202c;
}

.commitment-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.services-detailed {
    padding: 80px 40px;
    background: white;
}

.service-detail-card {
    margin-bottom: 100px;
}

.service-detail-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.service-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 32px;
    color: #2d3748;
}

.detailed-list {
    list-style: none;
    margin-bottom: 36px;
}

.detailed-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 14px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.detailed-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.price-box {
    background: #edf2f7;
    padding: 24px 32px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: inline-block;
}

.price-label {
    font-size: 14px;
    color: #718096;
    display: block;
    margin-bottom: 4px;
}

.price-value {
    font-size: 36px;
    font-weight: 800;
    color: #2d3748;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f4f8;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.contact-section {
    padding: 80px 40px;
    background: white;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 48px;
}

.info-block {
    margin-bottom: 36px;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3748;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.emergency-note {
    margin-top: 8px;
    color: #e53e3e;
    font-weight: 600;
}

.contact-image {
    flex: 1;
    background-color: #e8f4f8;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

.map-section {
    padding: 80px 40px;
    background: #f7fafc;
}

.map-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a202c;
}

.map-placeholder {
    max-width: 1100px;
    margin: 0 auto;
    background: #e2e8f0;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #718096;
    text-align: center;
}

.thanks-section {
    padding: 120px 40px;
    background: #f7fafc;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.thanks-service {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 48px;
    font-size: 17px;
    color: #2d3748;
}

.thanks-info {
    background: white;
    padding: 48px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 36px;
    text-align: center;
    color: #1a202c;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #4299e1;
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2d3748;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

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

.button-primary,
.button-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.button-primary {
    background: #4299e1;
    color: white;
}

.button-primary:hover {
    background: #3182ce;
    transform: translateY(-1px);
}

.button-secondary {
    background: white;
    color: #4299e1;
    border: 2px solid #4299e1;
}

.button-secondary:hover {
    background: #ebf8ff;
}

.legal-page {
    padding: 80px 40px;
    background: white;
}

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

.legal-container h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-intro {
    font-size: 15px;
    color: #718096;
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2d3748;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-container h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #4a5568;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-container a {
    color: #4299e1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .split-layout,
    .contact-layout,
    .trust-grid,
    .commitment-grid,
    .service-detail-layout,
    .value-item {
        flex-direction: column;
    }

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

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

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

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

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
    }

    .team-stats {
        flex-direction: column;
        gap: 32px;
    }

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