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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f8f8f8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
}

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

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

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

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

.brand-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -1px;
}

.ad-label {
    font-size: 11px;
    color: #666;
    font-style: italic;
}

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

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

.nav-offset a:hover {
    color: #4CAF50;
}

.hero-asymmetric {
    background-color: #fafafa;
    padding: 80px 40px 0;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.hero-text-block {
    flex: 0 0 45%;
    padding-top: 60px;
    padding-left: 40px;
}

.hero-title-large {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 22px;
    color: #555;
    margin-top: 20px;
}

.hero-image-irregular {
    flex: 0 0 50%;
    margin-top: -40px;
    margin-right: -100px;
}

.hero-image-irregular img {
    width: 100%;
    height: auto;
    border-radius: 8px 0 0 8px;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
    background-color: #e0e0e0;
}

.intro-offset {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.intro-left {
    flex: 0 0 55%;
    padding-right: 40px;
}

.intro-left h2 {
    font-size: 38px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

.intro-left p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}

.intro-right {
    flex: 0 0 40%;
}

.visual-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 12px 12px 40px rgba(0,0,0,0.1);
    background-color: #e8e8e8;
}

.visual-box img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-amplify {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 100px 40px;
}

.problem-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.problem-text-narrow {
    flex: 0 0 50%;
    padding-top: 40px;
}

.problem-text-narrow h3 {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 600;
}

.problem-text-narrow p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.6;
    color: #d0d0d0;
}

.problem-visual-offset {
    flex: 0 0 35%;
    margin-top: -60px;
}

.visual-accent {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    background-color: #3a3a3a;
}

.visual-accent img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-section {
    background-color: #f0f4f0;
    padding: 100px 40px;
}

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

.insight-header-offset {
    padding-left: 60px;
    margin-bottom: 50px;
}

.insight-header-offset h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.insight-columns-irregular {
    display: flex;
    gap: 60px;
}

.insight-col {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.insight-col-offset {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    margin-top: 40px;
}

.trust-build {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.trust-visual-left {
    flex: 0 0 45%;
}

.trust-visual-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 8px 8px 30px rgba(0,0,0,0.1);
    background-color: #e8e8e8;
}

.trust-content-right {
    flex: 0 0 50%;
}

.trust-content-right h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.testimonials-asymmetric {
    background-color: #fafafa;
    padding: 100px 40px;
}

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

.testimonials-title-offset {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 60px;
    padding-left: 80px;
    font-weight: 700;
}

.testimonials-grid-irregular {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.services-reveal {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.services-title-irregular {
    font-size: 46px;
    color: #1a1a1a;
    margin-bottom: 70px;
    padding-left: 100px;
    font-weight: 700;
}

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

.service-card {
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card.offset-card {
    flex: 0 0 calc(40% - 15px);
    margin-top: 40px;
}

.service-card.compact-card {
    flex: 0 0 calc(50% - 15px);
    margin-left: 25%;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.pricing-section {
    background-color: #f5f5f5;
    padding: 100px 40px;
}

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

.pricing-intro {
    margin-bottom: 60px;
    padding-left: 40px;
}

.pricing-intro h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.pricing-intro p {
    font-size: 18px;
    color: #555;
}

.pricing-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.price-card {
    flex: 0 0 calc(50% - 15px);
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.price-card.elevated {
    margin-top: -20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.price-card.offset-bottom {
    margin-left: 25%;
    flex: 0 0 calc(50% - 15px);
}

.price-card h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.price-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.price-value {
    font-size: 32px;
    color: #4CAF50;
    font-weight: 700;
}

.cta-form-section {
    padding: 120px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.form-intro-offset {
    margin-bottom: 50px;
    padding-left: 60px;
}

.form-intro-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro-offset p {
    font-size: 18px;
    color: #d0d0d0;
}

.order-form-asymmetric {
    background-color: #3a3a3a;
    padding: 50px;
    border-radius: 8px;
}

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

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

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

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

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

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

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

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px 30px;
}

.footer-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 0 0 40%;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 15px;
    color: #b0b0b0;
}

.footer-links-offset {
    flex: 0 0 55%;
    display: flex;
    gap: 60px;
    margin-top: 20px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

.footer-column ul li a:hover {
    color: #4CAF50;
}

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

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

.page-hero {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
}

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

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

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

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 0 0 45%;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    background-color: #e8e8e8;
}

.story-text {
    flex: 0 0 50%;
}

.story-text h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

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

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

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

.value-item h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.services-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.services-intro {
    margin-bottom: 70px;
    text-align: center;
}

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

.services-intro p {
    font-size: 19px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-detail-card {
    background-color: #fafafa;
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 8px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 0 0 40%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.service-detail-content {
    flex: 0 0 55%;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.service-price {
    font-size: 28px;
    color: #4CAF50;
    font-weight: 700;
    margin-top: 20px;
}

.contact-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.contact-intro {
    text-align: center;
    margin-bottom: 70px;
}

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

.contact-intro p {
    font-size: 18px;
    color: #555;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 80px 60px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 72px;
    color: #4CAF50;
    margin-bottom: 30px;
}

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

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

.thanks-service {
    background-color: #f0f4f0;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    font-size: 16px;
    color: #333;
}

.thanks-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #4CAF50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #45a049;
}

.legal-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .hero-content-offset,
    .intro-wrapper,
    .problem-content-irregular,
    .trust-wrapper,
    .footer-content-irregular,
    .story-block,
    .values-grid,
    .service-detail-card,
    .contact-info-grid {
        flex-direction: column;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .services-layout-asymmetric,
    .pricing-grid-irregular {
        flex-direction: column;
    }

    .service-card.large-card,
    .service-card.offset-card,
    .service-card.compact-card,
    .price-card,
    .price-card.offset-bottom {
        flex: 0 0 100%;
        margin-left: 0;
        margin-top: 0;
    }
}