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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1e3a5f;
    --accent-color: #4a90e2;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #757575;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

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(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.navigation {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 58, 95, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.cta-inline {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.intro-statement {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.intro-statement h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.intro-statement p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.7;
}

.problem-amplification {
    padding: 100px 0;
}

.insight-reveal {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.insight-header {
    text-align: center;
    margin-bottom: 60px;
}

.insight-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.insights-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.insight-card {
    flex: 1;
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.insight-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    opacity: 0.3;
}

.insight-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.insight-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.testimonial-inline {
    padding: 80px 0;
    background-color: var(--accent-color);
}

.testimonial-inline blockquote {
    border-left: 4px solid white;
    padding-left: 30px;
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 1.1rem;
    opacity: 0.9;
}

.approach-section {
    padding: 100px 0;
}

.benefit-list {
    list-style: none;
    margin: 30px 0;
}

.benefit-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    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-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--warning-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-select-service {
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-indicators {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.testimonial-block {
    padding: 80px 0;
}

.testimonials-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px 35px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-item p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.consultation-form {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.contact-form {
    background-color: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-consent {
    margin: 20px 0;
}

.form-consent label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-medium);
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.final-cta {
    padding: 100px 0;
    background-color: var(--secondary-color);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-section a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    padding: 16px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(44, 90, 160, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

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

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

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

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

.service-detail-visual {
    flex: 0 0 400px;
}

.service-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-tag.premium {
    background-color: var(--warning-color);
    color: var(--text-dark);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-medium);
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.featured-service {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 60px 40px;
    border-radius: 12px;
    margin: 0 20px;
}

.featured-service .service-detail-content {
    max-width: 100%;
}

.service-columns {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.service-columns > div {
    flex: 1;
}

.services-comparison {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-comparison h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.header {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
}

.comparison-row.header .comparison-cell {
    padding: 20px 15px;
}

.comparison-cell {
    flex: 1;
    padding: 18px 15px;
    text-align: center;
    min-width: 120px;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-row:last-child {
    border-bottom: none;
}

.about-story {
    padding: 80px 0;
}

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

.mission-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.mission-statement {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-medium);
    text-align: center;
    font-style: italic;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.value-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-expertise {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.team-expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.expertise-areas {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.expertise-item {
    background-color: white;
    padding: 40px 35px;
    margin-bottom: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.expertise-item h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.expertise-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.by-numbers {
    padding: 80px 0;
}

.by-numbers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.number-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 200px;
    text-align: center;
}

.big-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.number-item p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

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

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step {
    background-color: white;
    padding: 35px 40px;
    margin-bottom: 25px;
    border-radius: 10px;
    display: flex;
    gap: 30px;
    align-items: start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
}

.commitment-section {
    padding: 80px 0;
}

.commitment-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.commitment-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.commitment-item {
    background-color: var(--bg-light);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.commitment-item h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.commitment-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-content {
    padding: 80px 0;
}

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

.contact-info-side {
    flex: 0 0 350px;
}

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-detail p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.contact-note h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-note p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-description {
    color: var(--text-medium);
    margin-bottom: 30px;
}

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

.contact-faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

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

.thanks-icon {
    color: var(--success-color);
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-hero h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.thanks-info-box h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
}

.next-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.next-steps strong {
    display: block;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.next-steps p {
    color: var(--text-medium);
}

.thanks-service-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.thanks-service-box h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-note {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.thanks-confirmation {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.thanks-confirmation p {
    color: var(--text-medium);
}

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

.btn-primary {
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 35px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-resources {
    padding: 80px 0;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.resources-grid {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.resource-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px 30px;
    border-radius: 10px;
}

.resource-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.resource-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.resource-link {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.thanks-trust {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.legal-update {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.cookies-table thead {
    background-color: var(--secondary-color);
    color: white;
}

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

.cookies-table tbody tr:hover {
    background-color: var(--bg-light);
}

@media (max-width: 1024px) {
    .hero-content,
    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .services-cards {
        flex-direction: column;
    }

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

    .trust-stats {
        justify-content: center;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

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

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

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

    .service-columns {
        flex-direction: column;
        gap: 30px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .numbers-grid {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-row {
        min-width: 800px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    .service-price-large {
        font-size: 2rem;
    }
}
