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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

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

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

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

/* Navigation */
.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
}

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

.nav-cta {
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 2rem 4rem 4rem;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-tertiary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-tertiary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.cta-tertiary:hover {
    background-color: var(--text-dark);
}

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.intro-visual {
    flex: 1;
    padding-right: 3rem;
}

.intro-visual img {
    border-radius: 12px;
}

.intro-content {
    flex: 1;
    padding-left: 2rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

.link-arrow::after {
    content: '→';
    transition: margin-left 0.3s ease;
}

/* Value Cards Section */
.value-cards {
    background-color: var(--bg-white);
    padding: 6rem 2rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

.value-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Services Highlight Section */
.services-highlight {
    display: flex;
    background-color: var(--bg-light);
    padding: 6rem 2rem;
}

.services-content {
    flex: 2;
    padding-right: 4rem;
}

.services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.services-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 10px;
    gap: 2rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

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

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    min-width: 200px;
}

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

.btn-select {
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-cta {
    margin-top: 3rem;
    text-align: center;
}

.services-visual {
    flex: 1;
}

.services-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--secondary-color);
    padding: 5rem 2rem;
    color: var(--bg-white);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.testimonial {
    flex: 1;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--accent-color);
    font-weight: 600;
}

/* Trust Split Section */
.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    gap: 4rem;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-visual {
    flex: 1;
    display: flex;
    align-items: center;
}

.stats-box {
    width: 100%;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    color: var(--bg-white);
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* Contact Form Section */
.contact-form-section {
    background-color: var(--bg-white);
    padding: 6rem 2rem;
}

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

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

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

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    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);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem 2rem;
    text-align: center;
    color: var(--bg-white);
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #94a3b8;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
    animation: slideUp 0.5s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.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;
    line-height: 1.6;
}

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

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

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

.btn-accept:hover {
    background-color: #d97706;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Page */
.about-story {
    padding: 6rem 2rem;
}

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

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

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

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

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 10px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.team-section {
    padding: 6rem 2rem;
}

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

.team-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
}

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

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

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

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

.philosophy-section {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
}

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

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    border-radius: 12px;
}

.philosophy-text {
    flex: 1;
}

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

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    padding: 6rem 2rem;
    text-align: center;
}

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

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Services Page */
.services-overview {
    padding: 4rem 2rem;
}

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

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

.overview-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-detailed {
    padding: 3rem 2rem;
}

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

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

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

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

.service-detail-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

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

.btn-select-service {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.service-detail-image img {
    border-radius: 12px;
}

.service-packages {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.service-packages h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-packages p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section {
    padding: 6rem 2rem;
}

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

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

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

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

.faq-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-cta-final {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem 2rem;
    text-align: center;
    color: var(--bg-white);
}

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

.services-cta-final .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page */
.contact-main {
    padding: 4rem 2rem;
}

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

.contact-info {
    flex: 1;
}

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

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

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

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

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

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

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-form-wrapper > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.additional-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.process-simple {
    display: flex;
    gap: 3rem;
}

.process-item {
    flex: 1;
}

.process-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background-color: #10b981;
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 4rem;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

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

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-update {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary-color);
}

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

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-highlight,
    .trust-split,
    .story-split,
    .philosophy-split,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-visual,
    .services-content,
    .contact-info {
        padding-right: 0;
    }

    .intro-content {
        padding-left: 0;
    }

    .hero-visual {
        min-height: 400px;
    }

    .cards-grid,
    .process-steps,
    .team-grid,
    .testimonial-container,
    .process-simple {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-header h2,
    .intro-content h2,
    .trust-content h2 {
        font-size: 2rem;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        align-items: flex-start;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .header-content h1 {
        font-size: 2.3rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }
}
