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

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: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a80;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.75rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation - Magazine Style */
.nav-magazine {
    background-color: #ffffff;
    border-bottom: 2px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2980b9;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2c3e50;
    transition: 0.3s;
}

/* Hero - Magazine Style */
.hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.hero-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.hero-image-wrap {
    flex: 1;
    background-color: #e8eef3;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2980b9;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #1a5a80;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-service {
    padding: 12px 28px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem;
}

.btn-service:hover {
    background-color: #1e8449;
    transform: translateY(-2px);
}

.btn-submit {
    padding: 14px 40px;
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a5a80;
    transform: translateY(-2px);
}

/* Content Grid - Magazine Layout */
.content-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 50px;
}

.grid-main {
    flex: 3;
}

.sidebar-magazine {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Article Blocks */
.intro-block {
    margin-bottom: 50px;
}

.intro-block h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Magazine Columns */
.magazine-columns {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.column-left {
    flex: 2;
}

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

.feature-card {
    background-color: #ffffff;
}

.feature-card img {
    width: 100%;
    margin-bottom: 20px;
    background-color: #e8eef3;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.insight-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-left: 4px solid #2980b9;
}

.insight-box h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.insight-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
}

.stat-mini {
    background-color: #ecf0f1;
    padding: 20px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2980b9;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    display: block;
}

/* Full Width Sections */
.full-width-section {
    margin: 60px 0;
}

.full-width-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: #e8eef3;
}

.split-image img {
    width: 100%;
}

/* Services Showcase */
.services-showcase {
    margin: 60px 0;
}

.services-showcase h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-intro {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.service-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 700;
    flex: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #27ae60;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-section {
    background-color: #ecf0f1;
    padding: 40px;
    margin: 60px 0;
}

.testimonial-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

blockquote {
    border-left: 4px solid #2980b9;
    padding-left: 25px;
    margin-bottom: 30px;
}

blockquote p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 10px;
}

cite {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: normal;
}

/* Sidebar Cards */
.sidebar-card {
    background-color: #f8f9fa;
    padding: 25px;
}

.sidebar-card img {
    width: 100%;
    margin-bottom: 20px;
    background-color: #e8eef3;
}

.sidebar-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.sidebar-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Form Section */
.form-section {
    background-color: #f8f9fa;
    padding: 50px 40px;
    margin: 60px 0;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-section > p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
}

.form-group textarea {
    resize: vertical;
}

/* Page Content */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.page-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0 40px;
    border-bottom: 2px solid #ecf0f1;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.lead {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.7;
}

/* About Page */
.about-story {
    margin-bottom: 60px;
}

.content-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #e8eef3;
}

.about-image img {
    width: 100%;
}

.values-section {
    margin: 60px 0;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 30px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.team-section {
    margin: 60px 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.full-width-image {
    width: 100%;
    background-color: #e8eef3;
}

.approach-section {
    margin: 60px 0;
}

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2980b9;
    min-width: 60px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.cta-about {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    margin-top: 60px;
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
}

/* Services Page */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #4a5568;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-detail-image {
    flex: 1;
    background-color: #e8eef3;
}

.service-detail-image img {
    width: 100%;
}

/* Contact Page */
.contact-info-section {
    margin-bottom: 60px;
}

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

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

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e8eef3;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
}

.contact-approach {
    margin: 60px 0;
}

.contact-approach h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.timeline-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    background-color: #2980b9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-faq {
    margin: 60px 0;
}

.contact-faq h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-cta {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    margin-top: 60px;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-hero {
    padding: 60px 0;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.service-confirmation {
    font-weight: 600;
    color: #2980b9;
    font-size: 1.1rem;
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #2980b9;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    text-align: left;
}

.thanks-resources {
    margin: 60px 0;
}

.thanks-resources h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-resources > p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.resource-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    padding: 12px 28px;
    background-color: #ecf0f1;
    color: #2c3e50;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.resource-link:hover {
    background-color: #cbd5e0;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 800;
}

.last-updated {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 1rem;
}

.legal-content ul {
    margin: 15px 0 20px 25px;
    color: #4a5568;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a5a80;
}

/* Footer */
.footer-magazine {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
    margin-top: 80px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -4px 20px 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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.9rem;
}

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #1e8449;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #5d6d6e;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

    .magazine-columns {
        flex-direction: column;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 20px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .content-grid {
        padding: 40px 20px;
    }

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

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}