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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004999;
    --secondary-color: #10b981;
    --accent-color: #ff6b35;
    --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;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

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

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

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

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

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

.brand-section .logo span {
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

.hero-magazine {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-main {
    flex: 1.2;
}

.hero-side {
    flex: 1;
}

.edition-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-badge {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.hero-badge p {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.editorial-intro {
    padding: 100px 20px;
    background: var(--bg-white);
}

.intro-columns {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-left p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.intro-right {
    flex: 1;
    padding-top: 40px;
}

.highlight-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    padding-left: 25px;
}

.inline-cta {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.inline-cta:hover {
    transform: translateX(5px);
}

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

.section-header-offset {
    margin-bottom: 60px;
}

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.section-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(50% - 15px);
    display: flex;
    flex-direction: column;
}

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

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

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

.service-image {
    overflow: hidden;
}

.service-card.featured .service-image,
.service-card.wide .service-image {
    flex: 1;
}

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

.service-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card.featured .service-content,
.service-card.wide .service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.duration {
    font-size: 14px;
    color: var(--text-light);
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-select:hover {
    background: var(--primary-dark);
}

.testimonial-break {
    padding: 80px 20px;
    background: var(--text-dark);
}

.testimonial-featured {
    text-align: center;
    color: white;
}

.testimonial-featured p {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-featured cite {
    font-size: 16px;
    font-style: normal;
    color: var(--secondary-color);
    font-weight: 600;
}

.why-us-asymmetric {
    padding: 100px 20px;
    background: var(--bg-white);
}

.asymmetric-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.asym-content {
    flex: 1.3;
}

.asym-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.asym-points {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.point-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.point-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.point-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.process-timeline {
    padding: 100px 20px;
    background: var(--bg-light);
}

.centered-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.timeline-flow {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.timeline-step {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.timeline-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

.cta-full-width {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

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

.cta-content-centered h2 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content-centered p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.btn-primary-large {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.insights-preview {
    padding: 100px 20px;
    background: var(--bg-white);
}

.insights-header {
    margin-bottom: 50px;
}

.insights-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.insights-header p {
    font-size: 16px;
    color: var(--text-light);
}

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

.insight-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    padding: 30px;
    border-left: 3px solid var(--secondary-color);
    background: var(--bg-light);
}

.insight-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.stats-visual {
    padding: 80px 20px;
    background: var(--bg-light);
}

.stats-layout {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-block {
    text-align: center;
    flex: 1 1 280px;
}

.stat-block h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-block p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.final-cta-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.final-cta-box {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.final-cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.final-cta-box p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

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

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

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

.modal-content {
    background-color: var(--bg-white);
    margin: 50px auto;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

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

.modal-intro {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.magazine-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1500;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.btn-accept:hover {
    background: #0d9668;
}

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

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

.cookie-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: underline;
}

.cookie-link:hover {
    color: white;
}

.page-hero-simple {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story {
    padding: 100px 20px;
    background: var(--bg-white);
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

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

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

.values-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 35px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

.team-intro {
    padding: 100px 20px;
    background: var(--bg-white);
}

.team-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 60px;
    max-width: 900px;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 34px);
    min-width: 280px;
    text-align: center;
}

.member-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.member-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.member-title {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

.approach-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.approach-split {
    display: flex;
    gap: 70px;
}

.approach-content {
    flex: 1.2;
}

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

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.approach-highlights {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-box {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.highlight-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.recognition-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.recognition-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.recognition-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.recognition-item p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

.cta-about {
    padding: 100px 20px;
    background: var(--bg-light);
}

.cta-box-centered {
    text-align: center;
    padding: 50px 40px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.cta-box-centered h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-box-centered p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.services-detailed {
    padding: 80px 20px;
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

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

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

.service-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    padding: 6px 14px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 4px;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
}

.meta-item {
    font-size: 15px;
    color: var(--text-medium);
}

.meta-item strong {
    color: var(--text-dark);
}

.price-highlight {
    font-size: 18px;
}

.price-highlight strong {
    color: var(--primary-color);
    font-size: 20px;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.section-intro-centered {
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.visual-caption {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
}

.visual-caption p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.location-details {
    padding: 80px 20px;
    background: var(--bg-light);
}

.location-details h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.location-details p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.faq-contact {
    padding: 100px 20px;
    background: var(--bg-white);
}

.faq-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

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

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

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

.final-contact-cta {
    padding: 80px 20px;
    background: var(--bg-light);
}

.thanks-hero {
    padding: 100px 20px;
    background: var(--bg-light);
}

.thanks-content {
    text-align: center;
}

.success-icon {
    margin: 0 auto 30px;
    width: 80px;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.service-confirmation {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 50px;
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 500;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 35px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
    padding-top: 6px;
}

.thanks-actions {
    margin: 50px 0 40px;
}

.contact-reminder {
    margin-top: 40px;
}

.contact-reminder p {
    font-size: 15px;
    color: var(--text-medium);
}

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

.legal-page {
    padding: 60px 20px 100px;
    background: var(--bg-white);
}

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

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin: 20px 0 20px 25px;
}

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

.legal-content a {
    color: var(--primary-color);
    font-weight: 500;
}

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

.cookie-table thead {
    background: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

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

    .hero-content h1 {
        font-size: 42px;
    }

    .intro-columns {
        flex-direction: column;
        gap: 40px;
    }

    .asymmetric-layout {
        flex-direction: column;
        gap: 50px;
    }

    .approach-split {
        flex-direction: column;
        gap: 50px;
    }

    .story-layout {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 20px 0;
        gap: 5px;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

    .hero-stats {
        gap: 30px;
    }

    .section-header-offset h2 {
        font-size: 32px;
    }

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

    .service-card.featured,
    .service-card.wide {
        flex-direction: column;
    }

    .timeline-flow {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-step {
        flex: 1 1 100%;
    }

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

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

    .stats-layout {
        flex-direction: column;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

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

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

    .team-member {
        flex: 1 1 100%;
    }

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

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .section-header-offset h2,
    .centered-heading {
        font-size: 28px;
    }

    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }

    .cta-content-centered h2 {
        font-size: 32px;
    }

    .final-cta-box h2 {
        font-size: 28px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }
}