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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

.header-asymmetric {
    background-color: #1a252f;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.brand-block {
    flex: 0 0 auto;
}

.brand-name {
    font-size: 24px;
    color: #f39c12;
    font-weight: 700;
    margin: 0;
}

.main-nav {
    display: flex;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #f39c12;
}

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    font-style: italic;
    flex: 0 0 auto;
}

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

.hero-text-block {
    flex: 0 0 45%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background-color: #ffffff;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta-wrapper {
    margin-top: 10px;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.hero-image-container {
    flex: 1;
    background-color: #34495e;
    position: relative;
    overflow: hidden;
}

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

.intro-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.story-text h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.story-image-right {
    flex: 0 0 400px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.problem-amplification {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.amplification-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.amplification-wrapper h3 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.problem-card {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 10px;
    flex: 0 1 320px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.problem-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.services-reveal {
    padding: 90px 20px;
    background-color: #f4f6f7;
}

.services-header-offset {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding-left: 80px;
}

.services-header-offset h3 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

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

.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;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card.medium-card-left {
    flex: 0 1 calc(40% - 15px);
    margin-left: 5%;
}

.service-card.small-card-right {
    flex: 0 1 calc(35% - 15px);
    margin-right: 3%;
}

.service-image-wrapper {
    width: 100%;
    height: 250px;
    background-color: #ecf0f1;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 15px;
}

.select-service-btn {
    padding: 12px 25px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-building {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-content-wrapper h3 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}

.trust-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.trust-item.offset-position {
    margin-top: 30px;
}

.trust-icon {
    font-size: 36px;
    color: #f39c12;
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ecf0f1;
}

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

.testimonials-inline {
    padding: 90px 20px;
    background-color: #ecf0f1;
}

.testimonials-inline h3 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.testimonial-card.left-align {
    align-self: flex-start;
    max-width: 65%;
    margin-left: 5%;
}

.testimonial-card.right-align {
    align-self: flex-end;
    max-width: 65%;
    margin-right: 5%;
}

.testimonial-card.center-align {
    align-self: center;
    max-width: 70%;
}

.testimonial-text {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(to right, #1a252f 50%, #ffffff 50%);
}

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

.form-intro {
    flex: 0 0 40%;
    color: #ffffff;
    padding-right: 40px;
}

.form-intro h3 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.order-form {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.final-cta-offset {
    padding: 80px 20px;
    background-color: #f39c12;
    text-align: center;
    color: #ffffff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h3 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #f39c12;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #f39c12;
}

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

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

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

    .hero-text-block {
        flex: 1;
        padding: 60px 30px;
    }

    .hero-image-container {
        min-height: 400px;
    }

    .story-container {
        flex-direction: column;
    }

    .story-image-right {
        flex: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card.large-card,
    .service-card.medium-card-left,
    .service-card.small-card-right {
        flex: 0 1 100%;
        margin: 0;
    }

    .form-section {
        background: #1a252f;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

    .form-intro {
        flex: 1;
        padding-right: 0;
    }

    .testimonial-card.left-align,
    .testimonial-card.right-align,
    .testimonial-card.center-align {
        align-self: stretch;
        max-width: 100%;
        margin: 0;
    }
}

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .story-text h3 {
        font-size: 28px;
    }

    .amplification-wrapper h3 {
        font-size: 32px;
    }

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

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

    .trust-blocks {
        flex-direction: column;
    }

    .trust-item.offset-position {
        margin-top: 0;
    }
}