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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.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: #4a9eff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #4a9eff;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3688e6;
}

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #888888;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-menu a:hover {
    color: #4a9eff;
}

.hero-section {
    width: 100%;
    height: 600px;
    position: relative;
}

.hero-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.story-intro {
    background-color: #ffffff;
}

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

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.problem-section {
    background-color: #1a1a1a;
}

.dark-bg {
    background-color: #1a1a1a;
    color: #ffffff;
}

.dark-bg h2,
.dark-bg h3 {
    color: #ffffff;
}

.dark-bg p {
    color: #d4d4d4;
}

.problem-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

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

.problem-item {
    flex: 1;
    min-width: 280px;
    background-color: #2a2a2a;
    padding: 32px;
    border-radius: 8px;
}

.problem-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #4a9eff;
}

.problem-item p {
    font-size: 16px;
    line-height: 1.7;
}

.insight-section {
    background-color: #f8f8f8;
}

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

.split-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.citation {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 500;
}

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

.benefits-reveal {
    background-color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.benefit-card {
    flex: 1;
    min-width: 320px;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-icon {
    width: 100%;
    height: 240px;
    background-color: #d4d4d4;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    padding: 0 24px 24px;
}

.testimonials-section {
    background-color: #f0f4f8;
}

.light-bg {
    background-color: #f0f4f8;
}

.testimonials-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
    font-style: italic;
}

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

.services-preview {
    background-color: #1a1a1a;
}

.services-preview h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #d4d4d4;
}

.services-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #2a2a2a;
    padding: 40px 32px;
    border-radius: 8px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card.featured {
    border-color: #4a9eff;
    background-color: #252525;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4a9eff;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-description {
    margin-bottom: 28px;
}

.service-description p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #d4d4d4;
}

.service-description ul {
    list-style: none;
    padding: 0;
}

.service-description ul li {
    font-size: 15px;
    padding: 8px 0;
    color: #d4d4d4;
    padding-left: 24px;
    position: relative;
}

.service-description ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: 700;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 24px;
}

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

.btn-select:hover,
.btn-submit:hover {
    background-color: #3688e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
}

.form-section {
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f8f8;
    padding: 48px;
    border-radius: 8px;
}

.selected-service-display {
    background-color: #e8f4ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
    border-left: 4px solid #4a9eff;
}

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

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

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

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

.trust-section {
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
    text-align: center;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-section {
    background-color: #fff8e6;
    border-top: 2px solid #ffd966;
}

.disclaimer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.references-section {
    background-color: #f8f8f8;
}

.references-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.references-list li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.references-list a {
    color: #4a9eff;
    text-decoration: none;
}

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

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

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #d4d4d4;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

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

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

    .nav-menu {
        gap: 20px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .content-wrapper {
        padding: 60px 20px;
    }

    .split-layout {
        flex-direction: column;
        padding: 60px 20px;
    }

    .problem-grid,
    .benefits-list,
    .services-grid,
    .testimonials-grid {
        flex-direction: column;
    }

    .order-form {
        padding: 32px 20px;
    }

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

.contact-page {
    background-color: #ffffff;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 32px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.legal-page {
    background-color: #ffffff;
}

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.checkmark {
    width: 80px;
    height: 80px;
    background-color: #4a9eff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: #ffffff;
}

.about-page {
    background-color: #ffffff;
}

.about-header {
    background-color: #f8f8f8;
    padding: 80px 40px;
}

.about-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.about-header p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.services-page {
    background-color: #ffffff;
}

.services-header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px;
}

.services-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.services-header p {
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #d4d4d4;
}

.services-list {
    background-color: #ffffff;
}

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

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

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

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

.service-text {
    flex: 1;
}

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

.service-text .price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 20px;
}

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

.service-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.service-text ul li {
    font-size: 16px;
    padding: 8px 0;
    color: #4a4a4a;
    padding-left: 24px;
    position: relative;
}

.service-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: 700;
}

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

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