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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

a:hover {
    opacity: 0.7;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f8f8;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f8f8;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.hero-image-right {
    flex: 1;
    background-color: #ddd;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #333;
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}

.cta-large {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-large:hover {
    background-color: #333;
    opacity: 1;
}

/* Intro Section - Split */
.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image-left {
    flex: 1;
    background-color: #e8e8e8;
}

.intro-image-left img {
    width: 100%;
    height: auto;
}

.intro-text-right {
    flex: 1;
}

.intro-text-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #444;
}

/* Services Section */
.services-highlight {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #666;
}

.services-grid-alternating {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    background-color: #ffffff;
    overflow: hidden;
}

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

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

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.select-service-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #333;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-wrapper-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-info-left {
    flex: 1;
}

.form-info-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-info-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    font-size: 1.25rem;
    color: #1a1a1a;
}

.form-container-right {
    flex: 1;
}

.contact-form {
    background-color: #f8f8f8;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

.process-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.process-text-left {
    flex: 1;
}

.process-text-left h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

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

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 50px;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.process-image-right {
    flex: 1;
    background-color: #ddd;
}

.process-image-right img {
    width: 100%;
    height: auto;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    font-size: 0.95rem;
    color: #ccc;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn:hover {
    opacity: 0.8;
}

/* Page Hero for Other Pages */
.page-hero-split {
    display: flex;
    min-height: 500px;
}

.page-hero-split .hero-image-left {
    flex: 1;
    background-color: #ddd;
}

.page-hero-split .hero-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-split .hero-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f8f8;
}

.hero-content-right h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-right p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

/* About Page Sections */
.about-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.content-text-left {
    flex: 1;
}

.content-text-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-text-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #444;
}

.content-image-right {
    flex: 1;
    background-color: #ddd;
}

.content-image-right img {
    width: 100%;
    height: auto;
}

.expertise-section {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

.expertise-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.expertise-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.expertise-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.values-image-left {
    flex: 1;
    background-color: #ddd;
}

.values-image-left img {
    width: 100%;
    height: auto;
}

.values-text-right {
    flex: 1;
}

.values-text-right h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

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

.experience-section {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

.experience-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.experience-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.experience-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #444;
}

.experience-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

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

.cta-content-center p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Services Page */
.page-header-full {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

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

.header-content-center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.header-content-center p {
    font-size: 1.15rem;
    color: #666;
}

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

.service-detail-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

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

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

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

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

.service-detail-content-right,
.service-detail-content-left {
    flex: 1;
}

.service-detail-content-right h2,
.service-detail-content-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content-right p,
.service-detail-content-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

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

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-includes ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.service-pricing-box {
    background-color: #f8f8f8;
    padding: 1.5rem;
    margin-top: 2rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.additional-info {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

.info-container-center {
    max-width: 1200px;
    margin: 0 auto;
}

.info-container-center h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.contact-cta-section {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
}

.cta-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.cta-text-left {
    flex: 1;
    color: #ffffff;
}

.cta-text-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-text-left p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.cta-action-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Contact Page */
.page-header-simple {
    padding: 3rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
}

.page-header-simple h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.page-header-simple p {
    font-size: 1.15rem;
    color: #666;
}

.contact-info-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-layout-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-details-left {
    flex: 1;
}

.contact-details-left h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.contact-map-right {
    flex: 1;
}

.map-placeholder {
    position: relative;
    background-color: #ddd;
    height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(26, 26, 26, 0.85);
    color: #ffffff;
    padding: 1rem 1.5rem;
}

.map-overlay p {
    font-size: 1rem;
    margin: 0;
}

.impressum-section {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
}

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

.impressum-container h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.impressum-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #444;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
    min-height: 60vh;
}

.thanks-container-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-container-center h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.service-confirmation {
    margin: 2rem 0;
}

.selected-service-info {
    font-size: 1.05rem;
    color: #444;
    background-color: #ffffff;
    padding: 1rem;
    border-left: 4px solid #1a1a1a;
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.step-box {
    flex: 1;
    max-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    text-align: center;
}

.step-num {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.step-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #333;
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #444;
}

.legal-container ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.legal-container ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-grid-alternating .service-card,
    .form-wrapper-split,
    .process-split,
    .content-split,
    .expertise-grid,
    .values-split,
    .service-detail-split,
    .info-grid,
    .cta-split,
    .contact-layout-split,
    .page-hero-split {
        flex-direction: column;
    }

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

    .hero-content-left h1,
    .header-content-center h1 {
        font-size: 2.25rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .experience-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-content-left,
    .hero-content-right {
        padding: 2rem;
    }

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