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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ac4;
    --accent-color: #4a9fd8;
    --dark-bg: #0f1419;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #555555;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

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

.floating-nav {
    position: fixed;
    top: 40px;
    right: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

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

.hero-image-container img {
    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.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 800;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 24px;
    color: var(--text-light);
    max-width: 700px;
}

.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.intro-story {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

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

.story-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.story-content p {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

.visual-break {
    position: relative;
    min-height: 600px;
    background-color: #000;
}

.image-text-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-text-overlay img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 600px;
    color: var(--text-light);
}

.overlay-text h3 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.overlay-text p {
    font-size: 18px;
    line-height: 1.7;
}

.problem-amplification {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.problem-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.problem-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

.insight-section {
    padding: 100px 20px;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

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

.insight-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.insight-card {
    flex: 1;
    max-width: 400px;
    background-color: #1a1f26;
}

.insight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.insight-card h3 {
    font-size: 24px;
    margin: 25px 20px 15px;
    font-weight: 600;
}

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

.trust-building {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--text-gray);
    line-height: 1.8;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
}

.testimonials-inline {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.testimonial {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.testimonial img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-content cite {
    font-size: 16px;
    color: var(--text-gray);
    font-style: normal;
}

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

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

.benefits-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 30px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.benefit-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-primary {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.services-preview {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.services-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    flex: 1;
    max-width: 380px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    position: relative;
    border: 2px solid var(--border-color);
}

.service-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.select-service {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #aaa;
    cursor: pointer;
}

.modal-close:hover {
    color: #000;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: var(--secondary-color);
}

.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

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

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

.footer-section ul li a:hover {
    color: var(--text-light);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1500;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
}

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

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

.cookie-btn.accept {
    background-color: var(--success-color);
    color: white;
}

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: var(--text-dark);
}

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

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content {
    padding: 120px 20px 60px;
    background-color: #ffffff;
}

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

.legal-wrapper h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.legal-wrapper h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-wrapper h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-wrapper p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

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

.legal-wrapper ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.7;
}

.legal-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-gray);
}

.about-content {
    padding: 0 0 60px;
    background-color: #ffffff;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 60px 20px;
}

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.mission-section {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.mission-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

.values-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.journey-section {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.journey-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -47px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid #ffffff;
}

.timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.technology-section,
.partners-section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.technology-section h2,
.partners-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.technology-section p,
.partners-section p {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-intro {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.services-intro p {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.service-detailed {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 10px;
    position: relative;
}

.service-detailed.featured-service {
    border: 3px solid var(--primary-color);
}

.service-image {
    flex: 0 0 400px;
    background-color: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-info h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.service-info ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-info ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.6;
}

.service-pricing {
    margin: 30px 0;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.price-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-note {
    font-size: 13px;
    color: var(--text-gray);
}

.service-benefits {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.service-benefits h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.benefit h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.benefit p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-wrapper p {
    font-size: 18px;
    color: white;
    margin-bottom: 35px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-3px);
}

.contact-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.office-image {
    margin-top: 30px;
    background-color: #f0f0f0;
}

.office-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.contact-form-section {
    flex: 1;
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit-btn:hover {
    background-color: var(--secondary-color);
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 20px 80px;
    background-color: #ffffff;
    min-height: 60vh;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.thanks-details {
    margin-bottom: 25px;
}

.selected-service {
    font-size: 18px;
    color: var(--text-dark);
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 6px;
    display: inline-block;
}

.thanks-container > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-gray);
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--light-bg);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.thanks-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.thanks-info ul {
    padding-left: 20px;
}

.thanks-info ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 20px;
        right: 20px;
        left: 20px;
        padding: 12px 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .problem-container,
    .mission-section,
    .contact-wrapper {
        flex-direction: column;
    }

    .insight-cards,
    .service-cards {
        flex-direction: column;
    }

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial {
        flex-direction: column !important;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .service-image {
        flex: 1;
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}