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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.ad-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 3px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #666;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: #1a1a1a;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    max-width: 900px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.story-intro {
    padding: 120px 0;
    background: #fff;
}

.intro-text {
    font-size: 20px;
    line-height: 1.75;
    color: #3c3c3c;
    margin-bottom: 28px;
}

.visual-block {
    position: relative;
    margin: 0;
}

.image-text-overlay {
    position: relative;
    min-height: 600px;
    background: #2c2c2c;
}

.section-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.overlay-box {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.97);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.overlay-box h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.overlay-box p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

.insight-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.section-heading {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.insight-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.insight-card {
    flex: 1;
    max-width: 350px;
    background: #fff;
    padding: 35px;
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.insight-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #3c3c3c;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.citation:hover {
    text-decoration: underline;
}

.testimonial-inline {
    padding: 90px 0;
    background: #fff;
}

.testimonial-quote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.7;
    color: #2c2c2c;
    border-left: 4px solid #1a1a1a;
    padding-left: 35px;
}

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

.approach-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-visual {
    flex: 1;
    background: #e0e0e0;
}

.approach-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.approach-content {
    flex: 1;
    padding: 20px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 20px;
}

.inline-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.inline-cta:hover {
    background: #333;
}

.benefits-reveal {
    padding: 120px 0;
    background: #fff;
}

.benefits-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-card {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.benefit-img {
    flex: 1;
    max-width: 550px;
    height: 400px;
    object-fit: cover;
    background: #e8e8e8;
}

.benefit-content {
    flex: 1;
    padding: 30px 0;
}

.benefit-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 15px;
}

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

.btn-select-service {
    padding: 14px 30px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-build {
    padding: 100px 0;
    background: #f5f5f5;
}

.trust-build h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.trust-build p {
    font-size: 18px;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 30px;
}

.testimonial-mini {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-left: 3px solid #1a1a1a;
}

.testimonial-mini p {
    font-size: 18px;
    font-style: italic;
    color: #2c2c2c;
}

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

.form-section {
    padding: 100px 0;
    background: #fff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    background: #f9f9f9;
    padding: 50px;
    border-radius: 2px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    background: #fff;
    color: #2c2c2c;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #333;
}

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

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

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

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-references {
    margin: 50px 0;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.reference-list {
    list-style: decimal;
    padding-left: 20px;
}

.reference-list li {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 12px;
}

.reference-list a {
    color: #8ab4f8;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #777;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #fff;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.cookie-content a {
    color: #8ab4f8;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-header {
    margin-top: 70px;
    padding: 100px 0 60px;
    background: #f5f5f5;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 20px;
    color: #555;
}

.services-detailed {
    padding: 80px 0;
    background: #fff;
}

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

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

.service-visual {
    flex: 1;
    background: #e8e8e8;
}

.service-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-details {
    flex: 1;
    padding: 20px;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 18px;
}

.service-price {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0;
}

.about-story {
    padding: 100px 0;
    background: #fff;
}

.about-story p {
    font-size: 20px;
    line-height: 1.75;
    color: #3c3c3c;
    margin-bottom: 28px;
}

.about-visual-block {
    margin: 0;
    background: #2c2c2c;
}

.full-width-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-approach {
    padding: 100px 0;
    background: #f5f5f5;
}

.about-approach h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.approach-item {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 2px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #3c3c3c;
}

.about-values {
    padding: 100px 0;
    background: #fff;
}

.about-values h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-values p {
    font-size: 19px;
    line-height: 1.75;
    color: #3c3c3c;
    margin-bottom: 25px;
}

.about-impact {
    padding: 100px 0;
    background: #1a1a1a;
    color: #fff;
}

.about-impact h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.impact-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    max-width: 280px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 16px;
    color: #aaa;
    line-height: 1.5;
}

.about-cta {
    padding: 100px 0;
    background: #f5f5f5;
    text-align: center;
}

.about-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #333;
}

.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.contact-info-block {
    text-align: center;
    max-width: 300px;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 16px;
    line-height: 1.7;
    color: #3c3c3c;
}

.contact-approach {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-approach h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-approach p {
    font-size: 18px;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 20px;
}

.contact-approach a {
    color: #0066cc;
    text-decoration: none;
}

.contact-approach a:hover {
    text-decoration: underline;
}

.contact-visual {
    margin: 0;
    background: #2c2c2c;
}

.contact-faq {
    padding: 100px 0;
    background: #fff;
}

.contact-faq h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #3c3c3c;
}

.legal-page {
    margin-top: 70px;
    padding: 80px 0;
    background: #fff;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 25px 30px;
    line-height: 1.8;
}

.legal-page ul li {
    font-size: 16px;
    color: #3c3c3c;
    margin-bottom: 8px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 50px;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.thanks-section {
    margin-top: 70px;
    padding: 150px 0;
    background: #f5f5f5;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    font-size: 18px;
    color: #1a1a1a;
    margin: 30px 0;
    font-weight: 500;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

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

    .nav-menu {
        display: none;
    }

    .insight-grid,
    .approach-split,
    .benefit-card,
    .service-item,
    .approach-grid,
    .footer-grid,
    .impact-stats,
    .contact-grid {
        flex-direction: column;
    }

    .benefit-card:nth-child(even) {
        flex-direction: column;
    }

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