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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    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: #f4c430;
    text-decoration: underline;
}

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

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

.btn-cookie {
    background: #f4c430;
    color: #1e1e1e;
}

.btn-cookie:hover {
    background: #e0b020;
}

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

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

.nav-main {
    background: #1e1e1e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #f4c430;
}

.nav-disclaimer {
    font-size: 11px;
    color: #aaa;
    font-style: italic;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 700px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #f4c430;
    color: #1e1e1e;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: #e0b020;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e1e1e;
}

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

.story-visual {
    flex: 1;
    background: #f9f9f9;
}

.story-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.problem-reveal {
    position: relative;
    margin: 60px 0;
}

.problem-wrapper {
    position: relative;
    height: 500px;
}

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

.problem-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.92);
    padding: 40px 50px;
    max-width: 650px;
    border-radius: 8px;
}

.problem-text h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #1e1e1e;
}

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

.insight-block {
    background: #f4f4f4;
    padding: 80px 20px;
}

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

.insight-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e1e1e;
}

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

.insight-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
}

.insight-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #f4c430;
}

.insight-item p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.trust-section {
    padding: 80px 20px;
    background: #fff;
}

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

.trust-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e1e1e;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 30px;
    border-left: 4px solid #f4c430;
    border-radius: 4px;
}

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

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

.benefits-visual {
    position: relative;
    height: 600px;
    margin: 60px 0;
}

.benefits-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.benefits-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    background: rgba(30, 30, 30, 0.85);
    color: #fff;
    padding: 40px;
    max-width: 550px;
    border-radius: 6px;
}

.benefits-text h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.benefits-text p {
    font-size: 17px;
    line-height: 1.6;
}

.services-reveal {
    padding: 80px 20px;
    background: #fafafa;
}

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

.services-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e1e1e;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    padding: 20px 20px 10px;
    color: #1e1e1e;
}

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    padding: 0 20px;
    color: #f4c430;
    margin-bottom: 20px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #1e1e1e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #333;
}

.form-section {
    padding: 80px 20px;
    background: #fff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1e1e1e;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #555;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

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

.btn-submit:hover {
    background: #e0b020;
}

.final-cta {
    background: #1e1e1e;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: #f4c430;
    color: #1e1e1e;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-cta-large:hover {
    background: #e0b020;
}

.disclaimer-section {
    background: #f9f9f9;
    padding: 40px 20px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.footer-main {
    background: #1e1e1e;
    color: #ccc;
    padding: 60px 20px 20px;
}

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

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

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #f4c430;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #f4c430;
}

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

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.thanks-container p {
    font-size: 17px;
    margin-bottom: 14px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-container .service-name {
    font-weight: 700;
    color: #f4c430;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: #1e1e1e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #333;
}

.page-header {
    background: #1e1e1e;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1e1e1e;
}

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

.page-content ul {
    margin: 20px 0 20px 30px;
}

.page-content ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

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

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

    .testimonials {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
    }

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