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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 24px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #2ecc71;
    color: #fff;
}

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    margin-left: 10px;
}

.hero-visual {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ecf0f1;
}

.hero-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-box {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 40px;
}

.hero-text-box h1 {
    font-size: 62px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.95;
}

.problem-intro {
    padding: 120px 40px;
    background-color: #fff;
}

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

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

.narrow-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a5568;
}

.story-flow {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.flow-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.flow-text {
    flex: 1;
}

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

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

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

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

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

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 8px;
}

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

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

.trust-builder {
    padding: 120px 40px;
    background-color: #fff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-info h5 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.trust-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-wrapper h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.benefits-reveal {
    padding: 120px 40px;
    background-color: #fff;
}

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

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

.benefits-split {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.benefit-block {
    flex: 1;
    min-width: 240px;
}

.benefit-block h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-block p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
}

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

.pricing-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-header h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro {
    font-size: 19px;
    color: #4a5568;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-info {
    padding: 30px;
}

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

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

.price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 28px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
}

.cta-form-section {
    padding: 100px 40px;
    background-color: #fff;
}

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

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

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #27ae60;
}

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

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
    text-align: center;
}

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

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

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

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

.page-header {
    padding: 80px 40px 60px;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 40px;
    background-color: #fff;
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.about-text-block {
    margin-bottom: 60px;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.about-image-section {
    margin-bottom: 80px;
    background-color: #ecf0f1;
}

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

.about-values {
    margin-bottom: 60px;
}

.about-values h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 240px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #fff;
}

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
    font-size: 18px;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.cta-services {
    padding: 80px 40px;
    background-color: #3498db;
}

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

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #fff;
}

.btn-cta {
    display: inline-block;
    padding: 18px 48px;
    background-color: #2ecc71;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #27ae60;
}

.contact-info-section {
    padding: 60px 40px;
    background-color: #fff;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.location-description {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.location-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #fff;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4a5568;
}

.service-confirm {
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-next {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #95a5a6;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-page {
    padding: 60px 40px;
    background-color: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container h4 {
    font-size: 19px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-container strong {
    font-weight: 600;
    color: #2c3e50;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: #ecf0f1;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #bdc3c7;
}

.cookie-table td {
    padding: 12px;
    font-size: 15px;
    color: #4a5568;
    border-bottom: 1px solid #ecf0f1;
}

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

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

    .hero-text-box h1 {
        font-size: 38px;
    }

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

    .flow-container,
    .trust-content,
    .contact-wrapper {
        flex-direction: column;
    }

    .insight-grid,
    .testimonial-cards,
    .benefits-split,
    .values-grid {
        flex-direction: column;
    }

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

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

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