/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a7c3e;
    --accent-color: #8ba870;
    --dark-bg: #1a2f0d;
    --light-bg: #f8f9f6;
    --text-dark: #2a2a2a;
    --text-light: #666;
    --border-color: #e0e4db;
    --white: #ffffff;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

/* Navigation */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

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

/* Hero Magazine Style */
.hero-magazine {
    padding: 3rem 0;
    background: var(--light-bg);
}

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

.hero-main {
    flex: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-magazine h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.card-overlay h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.card-meta {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-submit {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

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

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--dark-bg);
    transform: translateY(-2px);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow::after {
    content: '→';
}

.link-arrow:hover {
    gap: 0.75rem;
}

/* Split Sections */
.intro-split {
    padding: 5rem 0;
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.split-visual {
    flex: 1;
}

.visual-caption {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    font-size: 0.875rem;
    color: var(--text-light);
    border-left: 3px solid var(--primary-color);
}

/* Magazine Columns */
.philosophy-grid {
    padding: 5rem 0;
    background: var(--light-bg);
}

.magazine-columns {
    display: flex;
    gap: 3rem;
}

.column-main {
    flex: 2;
}

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

.lead-paragraph {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.column-main h3 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.styled-quote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.25rem;
    font-style: italic;
    background: var(--white);
    color: var(--text-dark);
}

.info-card,
.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h4,
.info-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.principle-list,
.values-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.principle-list li,
.values-list li {
    padding-left: 1.5rem;
    position: relative;
}

.principle-list li::before,
.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.cta-box h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Services Grid Magazine Style */
.services-overview {
    padding: 5rem 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.service-card-large {
    flex: 1 1 100%;
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-image {
    flex: 1;
}

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

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

.service-card-medium {
    flex: 1 1 calc(50% - 0.75rem);
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.service-card-small {
    flex: 1 1 calc(33.333% - 1rem);
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card-small h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-card-small p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.btn-select-service {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Case Study Feature */
.case-study-feature {
    padding: 5rem 0;
    background: var(--light-bg);
}

.case-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.case-visuals {
    flex: 1;
    position: relative;
}

.case-main-img {
    width: 100%;
    border-radius: 8px;
}

.case-detail {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 40%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.case-text {
    flex: 1;
}

.case-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.case-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Insights Section */
.insights-section {
    padding: 5rem 0;
}

.insights-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.insight-card {
    flex: 1;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.insight-card.featured {
    flex: 2;
}

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

.insight-content {
    padding: 1.5rem;
}

.insight-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.insight-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.insight-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-flow {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testimonials-column-layout {
    display: flex;
    gap: 3rem;
}

.testimonial-intro {
    flex: 1;
}

.testimonial-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

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

/* CTA Sections */
.cta-section-inline {
    padding: 4rem 0;
}

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

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

.cta-content-centered p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.process-editorial {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
    min-width: 80px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

/* Forms */
.form-section,
.cta-form-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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);
}

/* Page Hero Simple */
.page-hero-simple {
    padding: 4rem 0;
    background: var(--light-bg);
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

/* About Page Specific */
.about-story {
    padding: 5rem 0;
}

.story-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
}

.philosophy-detailed {
    padding: 5rem 0;
}

.magazine-layout-about {
    display: flex;
    gap: 3rem;
}

.main-column {
    flex: 2;
}

.side-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.stat-item {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-item strong {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.team-member {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-role {
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.approach-visual {
    padding: 5rem 0;
}

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.questions-list {
    margin: 1.5rem 0;
}

.questions-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.questions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.approach-visual-block {
    flex: 1;
}

.approach-visual-block img {
    border-radius: 8px;
}

.cta-simple {
    padding: 4rem 0;
    background: var(--light-bg);
    text-align: center;
}

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

.cta-simple p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Services Page Specific */
.services-detailed {
    padding: 5rem 0;
}

.service-full-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem;
    background: var(--light-bg);
    gap: 2rem;
}

.service-title-block h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-tagline {
    font-size: 1.125rem;
    color: var(--text-light);
}

.service-price-block {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-body {
    display: flex;
    padding: 2.5rem;
    gap: 2rem;
}

.service-description {
    flex: 2;
}

.service-description h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
}

.service-description p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-description ul {
    list-style: none;
    margin: 1rem 0;
}

.service-description li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.service-footer {
    padding: 0 2.5rem 2.5rem;
}

.services-additional-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.service-compact {
    flex: 1;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.service-compact h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-compact p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-meta-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.service-meta-compact .price {
    font-size: 1.25rem;
}

/* Process Timeline */
.process-timeline {
    padding: 5rem 0;
    background: var(--light-bg);
}

.process-timeline h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.timeline-visual {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

/* Contact Page */
.contact-main {
    padding: 5rem 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.info-block a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

.contact-cta {
    padding: 4rem 0;
    background: var(--light-bg);
}

.cta-content-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.cta-text p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.cta-action {
    flex-shrink: 0;
}

.faq-contact {
    padding: 5rem 0;
}

.faq-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

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

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

.faq-item-simple h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

/* Thanks Page */
.thanks-hero {
    padding: 5rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
}

.service-selected {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

.service-name {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.next-steps {
    list-style: decimal;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

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

/* Legal Pages */
.legal-page {
    padding: 5rem 0;
}

.update-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--secondary-color);
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.cookies-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 9999;
    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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-dark);
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background: var(--dark-bg);
}

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

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

/* Footer */
.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

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

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

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

    .split-layout,
    .story-layout,
    .approach-split,
    .contact-layout,
    .case-grid {
        flex-direction: column;
    }

    .case-detail {
        position: static;
        width: 60%;
        margin-top: 1rem;
    }

    .magazine-columns,
    .magazine-layout-about {
        flex-direction: column;
    }

    .services-grid-magazine {
        flex-direction: column;
    }

    .service-card-large {
        flex-direction: column;
    }

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

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

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

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

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

    .services-additional-grid {
        flex-direction: column;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

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

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

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

    .service-price-block {
        text-align: left;
    }
}

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

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

    .section-header-centered h2,
    .cta-content-centered h2 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 1.5rem;
    }
}