* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

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

.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;
    min-width: 300px;
}

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

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

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

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

.btn-reject {
    background-color: #95a5a6;
    color: white;
}

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 11px;
    color: #95a5a6;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 12px;
}

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

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

.hero-image-overlay::after {
    content: '';
    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));
}

.hero-text-overlay {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

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

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

.opening-line {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #34495e;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.visual-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    display: block;
}

.problem-reveal {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #2c3e50;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.image-accent {
    flex: 1;
    background-color: #dfe6e9;
}

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

.insight-section {
    padding: 120px 20px;
    background-color: #2c3e50;
    color: white;
}

.centered-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.centered-content h2 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 40px;
}

.centered-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.reference {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

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

.visual-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.story-item {
    flex: 1;
    background-color: #f8f9fa;
}

.story-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.story-item p {
    padding: 0 20px 30px;
    font-size: 16px;
    color: #555;
    font-style: italic;
}

.trust-builder {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

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

blockquote {
    background-color: white;
    padding: 40px;
    border-left: 4px solid #3498db;
    font-size: 20px;
    font-style: italic;
    color: #34495e;
    line-height: 1.7;
}

cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.service-reveal {
    padding: 120px 20px;
    background-color: #ffffff;
}

.centered-heading {
    text-align: center;
    margin-bottom: 80px;
}

.centered-heading h2 {
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #2c3e50;
}

.centered-heading p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
}

.service-card h3 {
    padding: 25px 20px 10px;
    font-size: 22px;
    font-weight: 500;
    color: #2c3e50;
}

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

.price {
    padding: 0 20px;
    font-size: 28px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-btn:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 100px 20px;
    background-color: #2c3e50;
    display: none;
}

.form-section.active {
    display: block;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-thought {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.closing-statement {
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    color: #34495e;
}

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

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

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

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

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

.footer-section a:hover {
    color: white;
}

.reference-item {
    font-size: 13px;
    line-height: 1.6;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: #2c3e50;
    border-radius: 4px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #ecf0f1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 15px;
    }

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

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

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

    .offset-layout {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

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