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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

/* Header and Navigation */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #5f6368;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a73e8;
}

.ad-label {
    font-size: 0.75rem;
    color: #ffffff;
    background: #f59e0b;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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.9rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-text p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background: #cbd5e1;
    position: relative;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(26, 115, 232, 0.3);
}

/* Intro Split Section (Reverse) */
.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background: #f1f5f9;
    position: relative;
}

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

.intro-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.intro-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.2rem;
}

/* Services Section */
.services-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.section-header h2 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

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

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 480px;
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-visual {
    flex: 1;
    background: #f1f5f9;
    min-height: 300px;
}

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

.service-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-info p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.btn-select {
    background: #10b981;
    color: #ffffff;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-select:hover {
    background: #059669;
    transform: scale(1.02);
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 6rem 2rem;
    margin: 6rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #475569;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f8fafc;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background: #1a73e8;
    color: #ffffff;
    padding: 1.1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(26, 115, 232, 0.3);
}

.btn-submit:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

/* Benefits Split Section */
.benefits-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
}

.benefits-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

.benefits-visual {
    flex: 1;
    background: #cbd5e1;
}

.benefits-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 4rem 2rem 1rem;
    margin-top: 6rem;
}

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

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

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

.footer-col p,
.footer-col a {
    display: block;
    margin-bottom: 0.7rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #60a5fa;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-hero-split {
    display: flex;
    min-height: 70vh;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-text {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafc;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-hero-text p {
    font-size: 1.3rem;
    color: #475569;
}

.about-hero-image {
    flex: 1;
    background: #cbd5e1;
}

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

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.story-split.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    background: #f1f5f9;
}

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

.story-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.story-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.2rem;
}

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

.values-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1e293b;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a73e8;
}

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

.values-visual {
    flex: 1;
    background: #cbd5e1;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.team-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.role {
    font-size: 1rem;
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.approach-split.reverse {
    flex-direction: row-reverse;
}

.approach-image {
    flex: 1;
    background: #f1f5f9;
}

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

.approach-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.approach-steps {
    list-style: none;
    counter-reset: step-counter;
}

.approach-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.approach-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #1a73e8;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.cta-banner {
    text-align: center;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    margin: 6rem 0;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Services Page Styles */
.services-hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.services-hero p {
    font-size: 1.3rem;
    color: #475569;
}

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

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

.service-detail-visual {
    flex: 1;
    background: #f1f5f9;
    min-height: 400px;
}

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

.service-detail-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.service-detail-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.service-detail-info h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #334155;
}

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

.service-detail-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-info ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 0.95rem;
}

.service-detail-info ul li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #1a73e8;
    font-size: 1.5rem;
    line-height: 1;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a73e8;
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #475569;
}

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

.contact-info-block {
    flex: 1;
    padding: 4rem 3rem;
    background: #fafafa;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1e293b;
}

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

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a73e8;
}

.info-item p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: #cbd5e1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impressum-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.impressum-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.impressum-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 0.8rem;
}

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

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

.location-split {
    display: flex;
    gap: 3rem;
}

.location-text {
    flex: 2;
}

.location-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #334155;
}

.location-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.location-note {
    flex: 1;
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1a73e8;
}

.location-note p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

/* Thanks Page Styles */
.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 4rem 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.thanks-message {
    font-size: 1.3rem;
    color: #475569;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    border: 1px solid #e2e8f0;
}

.service-confirmation p {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 0.5rem;
}

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

.btn-primary {
    background: #1a73e8;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: #1a73e8;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #1a73e8;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
}

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

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.step-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1a73e8;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.thanks-info {
    background: #fafafa;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.info-text {
    flex: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.info-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.info-text ul {
    list-style: none;
}

.info-text ul li {
    margin-bottom: 1rem;
}

.info-text ul li a {
    color: #1a73e8;
    font-size: 1.05rem;
    text-decoration: underline;
}

.info-text ul li a:hover {
    color: #1557b0;
}

.info-visual {
    flex: 1;
    background: #cbd5e1;
}

.info-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legal Pages Styles */
.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: #ffffff;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.update-date {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #334155;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #475569;
}

.legal-page p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 0.8rem;
}

.legal-page a {
    color: #1a73e8;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1557b0;
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #334155;
}

.cookie-table td {
    color: #475569;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .benefits-split,
    .story-split,
    .values-split,
    .approach-split,
    .contact-split,
    .info-split,
    .service-detail-split {
        flex-direction: column;
    }

    .hero-text h1,
    .about-hero-text h1 {
        font-size: 2.5rem;
    }

    .service-card {
        flex-direction: column;
        min-width: 100%;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

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

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

@media (max-width: 768px) {
    .hero-text,
    .intro-text,
    .benefits-text,
    .story-text,
    .values-text,
    .approach-text,
    .about-hero-text,
    .contact-info-block,
    .info-text {
        padding: 3rem 1.5rem;
    }

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

    .section-header h2,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .service-detail-info {
        padding: 2rem 1.5rem;
    }

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

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