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

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

.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.2);
}

.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;
    margin: 0;
}

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

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

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

.btn-accept {
    background-color: #4a90e2;
    color: white;
}

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

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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header-minimal {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.hero-visual-full {
    position: relative;
    width: 100%;
    min-height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    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(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-size: 56px;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
}

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

.story-narrow {
    max-width: 750px;
    margin: 0 auto;
}

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

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

.story-image {
    width: 100%;
    height: auto;
    margin: 50px 0;
    border-radius: 8px;
    background-color: #dfe6e9;
    object-fit: cover;
}

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

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

.insight-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.insight-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 280px;
}

.insight-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4a90e2;
}

.insight-item p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.visual-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #95a5a6;
}

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

.testimonials-inline {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.testimonial-card {
    background-color: white;
    padding: 35px;
    margin-bottom: 30px;
    border-left: 4px solid #4a90e2;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.7;
}

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

.benefits-reveal {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

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

.benefit-visual-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

.benefit-visual-card img {
    flex: 1;
    max-width: 500px;
    height: 400px;
    border-radius: 8px;
    background-color: #dfe6e9;
    object-fit: cover;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.services-pricing {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border: 2px solid #4a90e2;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #4a90e2;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 25px;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.btn-service {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-service:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

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

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: white;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
}

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

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

.btn-submit:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

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

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #7f8c8d;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    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-column {
    flex: 1;
    min-width: 200px;
}

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

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4a90e2;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

.contact-page {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.contact-info {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-item {
    margin-bottom: 35px;
}

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

.contact-item p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

.about-page {
    padding: 100px 20px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 25px;
}

.about-image {
    width: 100%;
    height: 500px;
    margin: 50px 0;
    border-radius: 8px;
    background-color: #dfe6e9;
    object-fit: cover;
}

.services-page {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.services-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-page-container h1 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.legal-page {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 10px;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 40px 20px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: white;
    padding: 80px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 35px;
}

.btn-home {
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

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

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

    .nav-links {
        gap: 20px;
    }

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

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

    .benefit-visual-card img {
        max-width: 100%;
    }

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

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