* {
    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: #333;
    background: #fff;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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: #ffd700;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #4a90e2;
    color: #fff;
}

.btn-reject {
    background: #666;
    color: #fff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #4a90e2;
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.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-text {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 22px;
    font-weight: 300;
}

.intro-story {
    padding: 80px 0;
    background: #f9f9f9;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.intro-story p {
    font-size: 18px;
    margin-bottom: 15px;
}

.intro-story sup a {
    color: #4a90e2;
    text-decoration: none;
}

.problem-section {
    padding: 80px 0;
    background: #fff;
}

.split-content-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
}

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

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.insight-section {
    padding: 80px 0;
    background: #f4f4f4;
}

.insight-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.insight-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.story-visual {
    padding: 80px 0;
    background: #fff;
}

.asymmetric-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.content-block-left {
    flex: 1.2;
    min-width: 300px;
}

.content-block-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.content-block-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.image-block-right {
    flex: 0.8;
    min-width: 280px;
    background-color: #e0e0e0;
}

.image-block-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials-inline {
    padding: 80px 0;
    background: #2c2c2c;
    color: #fff;
}

.testimonial-item {
    margin-bottom: 40px;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: #bbb;
}

.benefits-reveal {
    padding: 80px 0;
    background: #fff;
}

.benefits-reveal h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

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

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

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

.benefit-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2c2c2c;
}

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

.trust-section {
    padding: 80px 0;
    background: #f4f4f4;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.trust-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.trust-section sup a {
    color: #4a90e2;
    text-decoration: none;
}

.services-pricing {
    padding: 80px 0;
    background: #fff;
}

.services-pricing h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

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

.service-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    border-color: #4a90e2;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

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

.btn-select {
    width: 100%;
    padding: 12px;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #357abd;
}

.form-section {
    padding: 80px 0;
    background: #f4f4f4;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c2c2c;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    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: #4a90e2;
}

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

.btn-submit:hover {
    background: #357abd;
}

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

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

.references-section {
    padding: 60px 0;
    background: #fff;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.references-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 1.8;
}

.references-list li {
    margin-bottom: 10px;
}

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

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

.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

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

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

.footer-col ul li {
    margin-bottom: 8px;
}

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

.footer-col ul li a:hover {
    color: #fff;
}

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

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f4f4f4;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.thanks-content .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #4a90e2;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-content .btn-home:hover {
    background: #357abd;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-page-hero {
    padding: 80px 0;
    background: #f4f4f4;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-page-hero p {
    font-size: 20px;
    color: #666;
}

.services-detail {
    padding: 80px 0;
    background: #fff;
}

.service-item {
    margin-bottom: 60px;
}

.service-item h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-item .service-price {
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

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

.contact-page {
    padding: 80px 0;
    background: #fff;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c2c2c;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info strong {
    color: #2c2c2c;
}

.legal-page {
    padding: 80px 0;
    background: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin: 15px 0 15px 30px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

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

    .split-content-reverse {
        flex-direction: column-reverse;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

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