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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    background: #ffffff;
    position: relative;
    z-index: 2;
    margin-left: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-content-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
}

.hero-image-block {
    flex: 1.2;
    position: relative;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-section {
    padding: 100px 40px;
    background: #ffffff;
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.offset-visual-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
    background: #f8f9fa;
}

.visual-left {
    flex: 1;
    margin-left: 80px;
}

.visual-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.text-right-offset {
    flex: 1;
    padding-right: 80px;
}

.text-right-offset h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.text-right-offset p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 16px;
}

.insight-section {
    padding: 100px 40px;
    background: #2c3e50;
    color: #ffffff;
}

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

.insight-container h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.insight-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

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

.testimonial-asymmetric {
    padding: 80px 40px;
    background: #ffffff;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 0 120px;
    padding: 60px;
    background: #f8f9fa;
    border-left: 6px solid #3498db;
}

.testimonial-block blockquote {
    font-style: normal;
}

.testimonial-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonial-block cite {
    font-style: normal;
    color: #6c757d;
    font-size: 16px;
}

.services-preview {
    padding: 100px 40px;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    width: 380px;
}

.offset-card-1 {
    margin-top: 0;
}

.offset-card-2 {
    margin-top: 40px;
}

.offset-card-3 {
    margin-top: 20px;
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin: 0 24px 20px;
    color: #495057;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 0 24px 20px;
}

.cta-secondary {
    display: inline-block;
    margin: 0 24px 24px;
    padding: 12px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #2980b9;
}

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

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 160px;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    color: #6c757d;
}

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

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

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

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

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

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

.btn-submit:hover {
    background: #2980b9;
}

.final-push {
    padding: 80px 40px;
    background: #2c3e50;
    color: #ffffff;
}

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

.final-push-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.final-push-content p {
    font-size: 20px;
    line-height: 1.7;
}

.main-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

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

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

.footer-col p {
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

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

.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 {
    flex: 1;
    margin: 0;
    color: #2c3e50;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-cookie {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie.accept {
    background: #3498db;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background: #e0e0e0;
    color: #2c3e50;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        margin: 0;
        max-width: none;
    }

    .offset-visual-section {
        flex-direction: column;
    }

    .visual-left {
        margin-left: 0;
    }

    .text-right-offset {
        padding-right: 0;
    }

    .services-asymmetric-grid {
        flex-direction: column;
        align-items: center;
    }

    .offset-card-1,
    .offset-card-2,
    .offset-card-3 {
        margin-top: 0;
    }

    .form-container-asymmetric {
        margin: 0 auto;
    }

    .testimonial-block {
        margin: 0 auto;
    }
}

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

    .nav-links {
        gap: 16px;
    }

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

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

.page-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 40px 60px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header-content p {
    font-size: 20px;
    color: #ecf0f1;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

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

.values-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

.values-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.team-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.team-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    width: 300px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-member p {
    font-size: 16px;
    color: #6c757d;
}

.approach-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

.approach-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.step-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.cta-section {
    padding: 100px 40px;
    background: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
}

.services-detail {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.service-detail-image {
    flex: 1;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 24px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #495057;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.services-note {
    padding: 60px 40px;
    background: #ffffff;
}

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

.services-note-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-note-content p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.7;
}

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

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-note {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.contact-map {
    flex: 1;
}

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

.visit-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.visit-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.visit-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 16px;
}

.visit-content a {
    color: #3498db;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 40px;
}

.thanks-details {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    color: #495057;
    margin: 0;
}

.thanks-next {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next ul li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    font-size: 16px;
    color: #495057;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #2980b9;
}

.legal-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

.legal-container h2 {
    font-size: 32px;
    margin: 60px 0 24px;
    color: #2c3e50;
}

.legal-container h2:first-of-type {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: #2c3e50;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.legal-container strong {
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .about-layout {
        flex-direction: column;
    }

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

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

    .service-detail-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 32px;
    }

    .thanks-container h1 {
        font-size: 28px;
    }

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