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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --dark: #1a1a1a;
    --light: #ecf0f1;
    --white: #ffffff;
    --gray: #7f8c8d;
    --border: #dfe6e9;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    display: flex;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary);
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

ul {
    list-style: none;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: var(--primary);
    color: var(--white);
    padding: 2rem 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Arial', sans-serif;
    color: var(--white);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nav-links a {
    color: var(--light);
    padding: 0.7rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.nav-links a:hover,
.nav-links a.nav-active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nav-cta {
    margin-top: auto;
    padding-top: 2rem;
}

.nav-cta-btn {
    display: block;
    text-align: center;
    background: var(--secondary);
    color: var(--white);
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.nav-cta-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.main-content {
    margin-left: 260px;
    flex: 1;
    width: calc(100% - 260px);
}

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

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

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

.hero-magazine {
    padding: 3rem 2rem;
    background: var(--light);
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-main {
    flex: 2;
    min-width: 300px;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 3rem 2rem;
    color: var(--white);
}

.hero-overlay h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-side {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-card {
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--secondary);
}

.hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.hero-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--secondary);
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.link-arrow:hover {
    color: var(--accent);
}

.intro-editorial {
    padding: 4rem 2rem;
    background: var(--white);
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--dark);
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 2rem;
}

.magazine-columns {
    padding: 4rem 2rem;
    background: var(--light);
}

.col-layout-3 {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.col-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    overflow: hidden;
}

.col-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.col-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.col-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
}

.feature-split {
    padding: 5rem 2rem;
    background: var(--white);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

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

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-content h2 {
    margin-bottom: 1.5rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--dark);
}

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

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.services-magazine {
    padding: 5rem 2rem;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-style: italic;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--primary);
    color: var(--white);
}

.service-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Arial', sans-serif;
}

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

.service-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body p {
    margin-bottom: 1.5rem;
}

.service-includes {
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: var(--dark);
    font-size: 0.95rem;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-service,
.btn-service-large {
    background: var(--secondary);
    color: var(--white);
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    margin-top: auto;
}

.btn-service:hover,
.btn-service-large:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.testimonial-flow {
    padding: 5rem 2rem;
    background: var(--primary);
    color: var(--white);
}

.testimonial-large {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    text-align: center;
    color: var(--white);
}

.testimonial-large cite {
    display: block;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-style: normal;
    color: var(--accent);
    font-family: 'Arial', sans-serif;
}

.process-magazine {
    padding: 5rem 2rem;
    background: var(--white);
}

.process-magazine h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.process-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--light);
    border-top: 4px solid var(--secondary);
}

.process-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.process-item h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.process-item p {
    color: var(--gray);
}

.cta-magazine {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    background: var(--white);
    color: var(--secondary);
    padding: 1.3rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: var(--secondary);
}

.why-us-asymmetric {
    padding: 5rem 2rem;
    background: var(--light);
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.why-main {
    flex: 2;
    min-width: 300px;
}

.why-main h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.why-stats {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Arial', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--gray);
    font-family: 'Arial', sans-serif;
}

.form-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
}

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

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

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Arial', sans-serif;
}

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

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

.btn-submit {
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.final-cta {
    padding: 4rem 2rem;
    background: var(--light);
    text-align: center;
}

.final-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.link-arrow-large {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    font-family: 'Arial', sans-serif;
}

.link-arrow-large:hover {
    color: var(--accent);
}

.footer {
    background: var(--dark);
    color: var(--light);
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: var(--light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    color: var(--white);
}

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.btn-cookie:hover {
    background: var(--accent);
}

.btn-cookie-alt {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.page-hero {
    padding: 5rem 2rem 3rem;
    background: var(--light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    font-style: italic;
}

.about-story {
    padding: 5rem 2rem;
    background: var(--white);
}

.story-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.about-story h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 5rem 2rem;
    background: var(--light);
}

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--accent);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.team-section {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.section-intro {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.achievements {
    padding: 5rem 2rem;
    background: var(--light);
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    background: var(--white);
    padding: 2rem;
    border-left: 6px solid var(--secondary);
    position: relative;
}

.timeline-year {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.timeline-item h3 {
    margin-bottom: 0.8rem;
}

.timeline-item p {
    color: var(--gray);
    margin: 0;
}

.cta-about {
    padding: 5rem 2rem;
    background: var(--primary);
    text-align: center;
}

.cta-about h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-about p {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-intro {
    padding: 3rem 2rem;
    background: var(--white);
}

.services-detailed {
    padding: 5rem 2rem;
    background: var(--light);
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: var(--white);
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.service-detail-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-detail-list {
    margin-bottom: 2rem;
}

.service-detail-list li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.custom-service {
    padding: 5rem 2rem;
    background: var(--primary);
    text-align: center;
}

.custom-service h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.custom-service p {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-split {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.info-block h3 {
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

.info-block p {
    color: var(--dark);
    line-height: 1.6;
}

.info-note {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
}

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

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

.contact-cta-box {
    background: var(--light);
    padding: 2rem;
    border-left: 4px solid var(--accent);
}

.contact-cta-box h3 {
    margin-bottom: 1rem;
}

.contact-methods {
    padding: 5rem 2rem;
    background: var(--light);
}

.contact-methods h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.methods-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.method-card h3 {
    margin-bottom: 1rem;
}

.method-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

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

.faq-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--dark);
}

.map-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 3px solid var(--secondary);
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-note {
    color: var(--gray);
    font-size: 1rem;
}

.thanks-hero {
    padding: 5rem 2rem 3rem;
    background: var(--light);
    text-align: center;
}

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

.thanks-lead {
    font-size: 1.3rem;
    color: var(--gray);
}

.thanks-details {
    padding: 5rem 2rem;
    background: var(--white);
}

.thanks-card {
    background: var(--light);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-card h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    font-family: 'Arial', sans-serif;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray);
    margin: 0;
}

.selected-service {
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.selected-service h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.thanks-explore {
    padding: 5rem 2rem;
    background: var(--light);
}

.thanks-explore h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.explore-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.explore-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.explore-card h3 {
    margin-bottom: 1rem;
}

.explore-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.thanks-testimonial {
    padding: 5rem 2rem;
    background: var(--white);
}

.thanks-cta {
    padding: 4rem 2rem;
    background: var(--light);
    text-align: center;
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.legal-page {
    padding: 5rem 2rem;
    background: var(--white);
}

.legal-updated {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-page ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 220px;
    }

    .main-content {
        margin-left: 220px;
        width: calc(100% - 220px);
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1.5rem;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-cta {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

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

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

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

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

@media (max-width: 480px) {
    .container,
    .container-wide,
    .container-narrow {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

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

    .process-cols {
        flex-direction: column;
    }

    .btn-primary,
    .btn-submit {
        padding: 0.9rem 1.5rem;
    }
}