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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f5576c;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

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

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

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

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

.magazine-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-zone {
    display: flex;
    flex-direction: column;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 0.25rem;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-columns {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.hero-main {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.sidebar-card.dark {
    background: var(--text-dark);
    color: var(--bg-white);
    border-left-color: var(--accent-color);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

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

.sidebar-card.dark p {
    color: rgba(255,255,255,0.85);
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-primary.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.insights-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header-split h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.three-col-asymmetric {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.insight-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 280px;
}

.insight-card.large {
    flex: 2;
    min-width: 400px;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 180px;
    width: 100%;
}

.insight-card.large .card-image {
    height: 250px;
}

.card-body {
    padding: 1.75rem;
}

.card-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: var(--text-dark);
    font-weight: 700;
}

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

.problem-amplification {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--text-dark);
    color: white;
}

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

.section-title-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.problem-amplification .section-title-center {
    color: white;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.services-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.services-magazine-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-feature {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-content {
    flex: 1.5;
    padding: 3rem;
}

.service-visual {
    flex: 1;
    min-height: 400px;
}

.service-content h3 {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-medium);
}

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

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.cta-inline {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.cta-text {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.trust-building {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.trust-columns {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.trust-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.testimonials-flow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.testimonials-flow h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-stagger {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    max-width: 700px;
}

.testimonial-card.offset {
    margin-left: auto;
    border-left-color: var(--accent-color);
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.contact-form-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    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);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.final-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.final-cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--primary-color);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

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

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

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

.page-hero-simple {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.story-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.story-visual {
    flex: 1;
    height: 400px;
    border-radius: 12px;
}

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.methodology-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.methodology-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.method-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.method-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.method-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-about {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-block {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

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

.service-header {
    margin-bottom: 2rem;
}

.service-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-title-group h2 {
    font-size: 2rem;
    font-weight: 700;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-tagline {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-style: italic;
}

.service-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.details-col {
    flex: 1;
    min-width: 300px;
}

.details-col h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.details-col p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-medium);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-cta {
    text-align: center;
}

.comparison-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

.comparison-cell {
    flex: 1;
    padding: 1.25rem;
    min-width: 150px;
}

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

.faq-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.faq-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.final-services-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.cta-content-center {
    text-align: center;
    background: var(--bg-light);
    padding: 4rem;
    border-radius: 12px;
}

.cta-content-center h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content-center p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 350px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    min-width: 350px;
}

.visual-block {
    height: 300px;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.highlight-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.contact-alternate {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.contact-alternate h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-alternate p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.before-contact-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.thanks-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-content {
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.service-info p {
    font-size: 1rem;
    color: var(--text-dark);
}

.next-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.next-steps h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-explore {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.explore-content h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.explore-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.explore-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.explore-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.explore-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.85rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table thead {
    background: var(--primary-color);
    color: white;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .hero-columns {
        flex-direction: column;
    }

    .three-col-asymmetric {
        flex-direction: column;
    }

    .insight-card.large {
        min-width: 280px;
    }

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

    .service-visual {
        min-height: 300px;
    }

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

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

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-title-center,
    .services-header h2,
    .page-hero-simple h1 {
        font-size: 2rem;
    }

    .trust-columns,
    .team-grid,
    .values-grid {
        flex-direction: column;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-bottom: 1px solid var(--border-color);
        padding: 1rem;
    }

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

    .form-row {
        flex-direction: column;
    }
}
