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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

.btn-reject:hover {
    background: #fff;
    color: #2c3e50;
}

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 5px 12px;
    border-radius: 20px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #34495e;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-text-overlay p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

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

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

.narrow-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #2c3e50;
}

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

.visual-break {
    width: 100%;
    background: #ecf0f1;
}

.visual-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

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

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

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

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

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

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

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

.centered-insight > p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 60px;
    opacity: 0.9;
}

.insight-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 8px;
}

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

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
}

.image-text-split {
    padding: 0;
}

.split-container {
    display: flex;
    max-width: 100%;
}

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

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

.split-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonial-flow {
    padding: 100px 20px;
    background: #ecf0f1;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

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

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    color: #555;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #f8f9fa;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    background: #dfe6e9;
}

.service-card > div:not(.price-reveal) {
    flex: 1;
    padding: 40px;
}

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

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.price-reveal {
    margin: 20px 0;
    padding: 40px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    padding: 15px 40px;
    background: #3498db;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 40px;
    margin-bottom: 40px;
}

.select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 20px;
    background: #ecf0f1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-container p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

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

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.footer-section {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
}

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

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

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

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

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

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.content-wrapper h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #34495e;
}

.content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    display: flex;
    gap: 40px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.service-item img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    background: #dfe6e9;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 26px;
    margin: 0 0 15px;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 15px;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin: 0 0 20px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.legal-content {
    line-height: 1.9;
}

.legal-content h2 {
    margin-top: 50px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 20px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.thanks-container .order-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-container .order-summary p {
    margin-bottom: 10px;
}

.back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .offset-content,
    .split-container,
    .testimonial-container,
    .insight-grid,
    .footer-content {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-card img {
        width: 100%;
    }

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

    .service-item img {
        width: 100%;
    }
}