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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: relative;
    z-index: 100;
}

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    margin: 0 5%;
    padding: 60px 0;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4a4a4a;
    max-width: 480px;
}

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

.cta-primary:hover {
    background-color: #e5582b;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.intro-offset {
    display: flex;
    gap: 60px;
    padding: 120px 5%;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.intro-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -80px;
}

.intro-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.problem-amplification {
    display: flex;
    gap: 80px;
    padding: 100px 5%;
    background-color: #fafafa;
}

.problem-card-left {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #ff6b35;
}

.problem-card-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.problem-card-left p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.problem-visual-right {
    flex: 1;
    margin-top: 60px;
}

.problem-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.insight-diagonal {
    padding: 120px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.insight-diagonal h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.insight-intro {
    font-size: 20px;
    margin-bottom: 60px;
    color: #4a4a4a;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 27px);
}

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

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

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

.card-offset-4 {
    margin-top: 60px;
}

.card-offset-5 {
    margin-top: 30px;
}

.card-offset-6 {
    margin-top: 50px;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #4a4a4a;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0 24px 16px;
}

.select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.select-service:hover {
    background-color: #333333;
}

.benefits-overlap {
    padding: 100px 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.benefits-overlap h2 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.benefit-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.benefit-item:nth-child(2) {
    margin-top: 40px;
}

.benefit-item:nth-child(4) {
    margin-top: 40px;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ff6b35;
}

.benefit-item p {
    font-size: 16px;
    color: #cccccc;
}

.trust-elements {
    padding: 120px 5%;
}

.trust-elements h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials-staggered {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.testimonial-card:nth-child(2) {
    margin-top: 40px;
}

.testimonial-card p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.cta-diagonal {
    padding: 80px 5%;
    background: linear-gradient(135deg, #ff6b35 0%, #e5582b 100%);
    color: #ffffff;
}

.cta-content-block h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-content-block p {
    font-size: 20px;
    color: #ffffff;
    max-width: 700px;
}

.form-section-offset {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.contact-form-asymmetric {
    width: 100%;
    max-width: 600px;
    padding: 48px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form-asymmetric h3 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #e5582b;
}

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

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

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

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

.footer-block p {
    font-size: 15px;
    color: #cccccc;
}

.footer-block a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #ff6b35;
}

.footer-disclaimer {
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
}

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

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

#cookie-accept {
    background-color: #ff6b35;
    color: #ffffff;
}

#cookie-accept:hover {
    background-color: #e5582b;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
    padding: 80px 5% 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
}

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

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

.page-content {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #1a1a1a;
}

.page-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.page-content li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.contact-page-layout {
    display: flex;
    gap: 60px;
    padding: 60px 5%;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ff6b35;
}

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

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 5%;
}

.service-detail {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
}

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

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.service-detail-content .price {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin-top: 20px;
}

.about-layout {
    padding: 60px 5%;
}

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

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

.about-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    padding: 60px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.thanks-content a {
    display: inline-block;
    background-color: #ff6b35;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-content a:hover {
    background-color: #e5582b;
}

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

    .hero-content-offset {
        padding-right: 0;
    }

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

    .intro-offset {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

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

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

    .service-detail {
        flex-direction: column !important;
    }

    .about-section {
        flex-direction: column !important;
    }

    .cookie-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }
}