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

.ad-disclosure {
    background-color: #f5f5f5;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.header-asymmetric {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-offset {
    position: relative;
    margin-bottom: 80px;
}

.hero-image-container {
    position: relative;
    height: 600px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    max-width: 650px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hero-title-offset {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.intro-asymmetric {
    padding: 100px 20px;
    background-color: #fafafa;
}

.container-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-block-left {
    flex: 1;
    padding-left: 120px;
}

.intro-block-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.intro-block-right {
    flex: 1;
    background-color: #d4d4d4;
}

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

.problem-section {
    padding: 120px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.container-offset {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 80px;
}

.problem-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.problem-text p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.insight-offset {
    padding: 100px 20px;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-visual {
    flex: 1;
    background-color: #c9c9c9;
}

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

.insight-content {
    flex: 1;
    padding-right: 60px;
}

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

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

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 28px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #0052a3;
}

.trust-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

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

.centered-title {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

.centered-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-card {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.trust-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.reference {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

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

.testimonials-inline {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.testimonial-offset {
    background-color: #f5f5f5;
    padding: 40px 50px;
    margin-bottom: 40px;
    border-left: 6px solid #0066cc;
    font-style: italic;
}

.testimonial-offset p {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-offset cite {
    font-style: normal;
    color: #666;
    font-size: 16px;
    font-weight: 600;
}

.services-asymmetric {
    padding: 120px 20px;
    background-color: #fafafa;
}

.services-title-offset {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    padding-left: 40px;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-large {
    flex: 1 1 calc(60% - 15px);
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
}

.service-small {
    flex: 1 1 calc(40% - 15px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 25px 20px;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: #0066cc;
    margin: 20px 25px 15px;
}

.btn-select {
    margin: 0 25px 25px;
    padding: 12px 24px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.form-section-offset {
    padding: 100px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.container-form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-visual {
    flex: 1;
}

.form-visual h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-visual p {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
}

.selected-service-display {
    background-color: #f5f5f5;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    border-left: 4px solid #0066cc;
}

.selected-service-display p {
    color: #333;
    font-size: 16px;
    margin: 0;
}

.selected-service-display.has-service {
    background-color: #e7f3ff;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover:not(:disabled) {
    background-color: #0052a3;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

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

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

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 14px;
    color: #ccc;
}

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

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

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

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

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 8px;
    font-size: 13px;
}

.references-list a {
    color: #88c7ff;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    max-width: 1400px;
    margin: 0 auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 30px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #444;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #555;
}

.thanks-section {
    padding: 120px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.service-confirm {
    background-color: #e7f3ff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
    border-left: 4px solid #0066cc;
}

.service-selected {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.about-hero {
    padding: 100px 20px;
    background-color: #fafafa;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
}

.about-story {
    padding: 100px 20px;
}

.story-text {
    flex: 1;
    padding-right: 60px;
}

.story-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #c5c5c5;
}

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

.methodology-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.methodology-section h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
}

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

.method-card {
    flex: 1 1 calc(50% - 20px);
    background: #ffffff;
    padding: 40px;
    border-top: 4px solid #0066cc;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.method-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.values-section {
    padding: 100px 20px;
}

.values-section h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.services-header {
    padding: 100px 20px;
    background-color: #fafafa;
}

.services-header h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-intro {
    font-size: 20px;
    color: #666;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #444;
}

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

.price-large {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    margin: 25px 0;
}

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

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

.cta-services {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.cta-services h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.contact-header {
    padding: 100px 20px;
    background-color: #fafafa;
}

.contact-header h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 20px;
    color: #666;
}

.contact-content {
    padding: 80px 20px;
}

.contact-info {
    flex: 1;
}

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

.contact-detail h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.contact-map {
    flex: 1;
    background-color: #c8c8c8;
}

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

.legal-content {
    padding: 80px 20px;
    min-height: 60vh;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

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

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

.legal-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

@media (max-width: 1024px) {
    .container-irregular,
    .container-split,
    .container-form,
    .trust-grid,
    .methodology-grid,
    .service-detail-card {
        flex-direction: column;
    }

    .hero-title-offset {
        font-size: 40px;
    }

    .intro-block-left {
        padding-left: 20px;
    }

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

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 20px;
    }
}

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

    .hero-overlay {
        position: static;
        transform: none;
        margin: -60px 20px 0;
    }

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

    .centered-title,
    .services-title-offset {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}