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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.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;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    padding: 4px 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

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

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

.nav-links a:hover {
    color: #666666;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    color: #ffffff;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.story-intro {
    padding: 80px 40px;
    background-color: #fafafa;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #3a3a3a;
    text-align: center;
}

.visual-statement {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

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

.insight-reveal {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

.content-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.insight-reveal h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.insight-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.insight-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background-color: #e0e0e0;
}

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

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0 25px 25px 25px;
}

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

.testimonial-flow {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-flow h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial {
    margin-bottom: 50px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ffffff;
}

.quote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    font-size: 15px;
    color: #cccccc;
}

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

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

.services-reveal h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    padding: 35px;
    background-color: #f9f9f9;
    border-left: 5px solid #2c2c2c;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.service-item .price {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 20px 0;
}

.btn-select {
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1a1a1a;
}

.form-section {
    padding: 100px 40px;
    background-color: #f0f0f0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 16px;
    margin-bottom: 40px;
    color: #555555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #cccccc;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a1a1a;
}

.final-cta {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background-color: #e0e0e0;
}

.cta-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-align: center;
    padding: 40px;
}

.cta-overlay h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.btn-cta {
    padding: 18px 50px;
    background-color: #ffffff;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #e0e0e0;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ffffff;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #cccccc;
}

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

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

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

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

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

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

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

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