* {
    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;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.hero-full {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #34495e;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.9;
}

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

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

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

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

.visual-section {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
    background-color: #f8f9fa;
}

.visual-section.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
}

.inline-image {
    flex: 1;
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    background-color: #e9ecef;
}

.visual-text {
    flex: 1;
    max-width: 600px;
}

.visual-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.trust-builder {
    padding: 100px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.problem-section {
    padding: 120px 20px;
    background-color: #ffffff;
}

.testimonial-inline {
    padding: 80px 60px;
    background-color: #ecf0f1;
}

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

.testimonial-content p {
    font-size: 26px;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-content span {
    font-size: 16px;
    color: #7f8c8d;
}

.benefits-reveal {
    padding: 120px 60px;
    background-color: #ffffff;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-container h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.benefits-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e9ecef;
}

.benefit-card h4 {
    font-size: 22px;
    padding: 25px 25px 15px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.6;
}

.pricing-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.price-card.featured {
    border-color: #3498db;
    transform: scale(1.05);
}

.price-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price-card p {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 30px;
    min-height: 60px;
    line-height: 1.5;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 30px;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.form-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 20px;
    color: #3498db;
    margin-bottom: 40px;
    font-weight: 600;
}

.order-form {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.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: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.final-cta {
    padding: 100px 60px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

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

.cta-content p {
    font-size: 22px;
    opacity: 0.9;
}

.disclaimer-section {
    padding: 60px 60px;
    background-color: #ecf0f1;
}

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

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.thanks-container {
    max-width: 800px;
    margin: 150px auto;
    padding: 80px 60px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

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

.thanks-service {
    font-size: 24px;
    color: #3498db;
    font-weight: 600;
    margin: 30px 0;
}

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

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

.page-container {
    max-width: 1000px;
    margin: 150px auto 80px;
    padding: 0 60px;
}

.page-container h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.page-container h3 {
    font-size: 24px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-container ul {
    margin: 20px 0;
    padding-left: 40px;
}

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

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

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

.contact-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}

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

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

.service-price {
    font-size: 28px;
    color: #3498db;
    font-weight: 700;
}

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

    .hero-content p {
        font-size: 18px;
    }

    .visual-section {
        flex-direction: column;
        padding: 60px 30px;
    }

    .visual-section.reverse {
        flex-direction: column;
    }

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

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

    .nav-container {
        padding: 15px 25px;
    }

    .nav-links {
        gap: 20px;
    }

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