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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

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

.cookie-banner.active {
    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: 250px;
}

.cookie-content a {
    color: #f0a500;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #f0a500;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #d99400;
}

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

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

.ad-disclosure {
    background: #f5f5f5;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-floating {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2c2c2c;
}

.hero-image-container 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;
    max-width: 800px;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.story-intro {
    padding: 100px 20px;
    background: #fff;
}

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

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.problem-visual {
    background: #f9f9f9;
    padding: 80px 20px;
}

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

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

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

.split-text {
    flex: 1;
}

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

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

.insight-reveal {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    color: #fff;
}

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

.centered-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.centered-block p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.highlight-text {
    font-size: 24px;
    font-weight: 600;
    color: #f0a500;
    padding: 30px 0;
    border-top: 2px solid #f0a500;
    border-bottom: 2px solid #f0a500;
    margin: 40px 0;
}

.image-interlude {
    height: 70vh;
    background-color: #2c2c2c;
}

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

.benefits-flow {
    padding: 100px 20px;
    background: #fff;
}

.benefit-card {
    max-width: 1100px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.benefit-card.reverse {
    flex-direction: row-reverse;
}

.benefit-card img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e5e5e5;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.benefit-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.testimonial-block {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 40px;
    background: #fff;
    border-left: 4px solid #f0a500;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #2c2c2c;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.services-preview {
    padding: 100px 20px;
    background: #fff;
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #f9f9f9;
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #f0a500;
}

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

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

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

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 40px;
    border-radius: 2px;
}

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

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

.selected-service-display {
    background: #f0a500;
    color: #1a1a1a;
    padding: 20px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #f0a500;
    color: #1a1a1a;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-left: 3px solid #999;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

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

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

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

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

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

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

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

.footer-section p {
    color: #ccc;
    font-size: 14px;
}

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

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

    .hero-overlay p {
        font-size: 16px;
    }

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

    .benefit-card, .benefit-card.reverse {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
    }

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

    .service-item {
        flex: 1 1 100%;
    }
}
