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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.hero-section {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.85) 0%, rgba(243, 156, 18, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #f39c12;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.cta-hero:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.story-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

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

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.inline-image {
    margin: 3rem 0;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.problem-section {
    padding: 6rem 2rem;
    background: #ecf0f1;
}

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

.split-left {
    flex: 1;
}

.split-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.split-left p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.split-right {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-section {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

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

.centered-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.insight-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.reference {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
}

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

.trust-section {
    position: relative;
    min-height: 600px;
}

.trust-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #95a5a6;
}

.trust-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-overlay-content {
    position: relative;
    z-index: 2;
    background: rgba(52, 73, 94, 0.9);
    padding: 5rem 2rem;
    color: #ffffff;
    text-align: center;
}

.trust-overlay-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.trust-overlay-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonials-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.testimonial-flow {
    margin-top: 3rem;
}

.testimonial {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ecf0f1;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
}

.benefits-section {
    background: #ffffff;
}

.stacked-benefits {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem;
    border-bottom: 1px solid #ecf0f1;
}

.benefit-block.reverse {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-content p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
}

.benefit-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-mid-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    text-align: center;
}

.cta-mid-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-mid-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #f39c12;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.how-it-works {
    padding: 6rem 2rem;
    background: #ffffff;
}

.process-steps {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f39c12;
    line-height: 1;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step p {
    font-size: 1.05rem;
    color: #34495e;
}

.pricing-section {
    padding: 6rem 2rem;
    background: #ecf0f1;
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.price-card {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.price-card.featured {
    border: 3px solid #f39c12;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f39c12;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #ecf0f1;
    color: #34495e;
}

.features li:last-child {
    border-bottom: none;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: #f39c12;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.disclaimer-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.disclaimer-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.references-section {
    padding: 3rem 2rem;
    background: #ffffff;
}

.references-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.75rem;
    color: #34495e;
}

.references-list a {
    color: #f39c12;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #f39c12;
    font-size: 1.2rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 2rem;
}

.thanks-content {
    max-width: 600px;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.thanks-back {
    display: inline-block;
    padding: 1rem 2rem;
    background: #f39c12;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.thanks-back:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.page-header {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.page-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.75rem;
    color: #34495e;
    line-height: 1.7;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1rem 0;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.service-card li:last-child {
    border-bottom: none;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

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

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

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .price-card.featured {
        transform: scale(1);
    }

    .page-header h1 {
        font-size: 2rem;
    }
}