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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: #1a2332;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.75rem;
    color: #a0aec0;
    padding: 0.4rem 0.8rem;
    border: 1px solid #4a5568;
    border-radius: 4px;
}

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

.main-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #63b3ed;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 4rem 6%;
    background: linear-gradient(135deg, #2d3748 0%, #1a2332 100%);
}

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

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.8rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: #cbd5e0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3182ce;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #3182ce;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
}

.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background-color: #f7fafc;
    align-items: flex-start;
}

.intro-text-block {
    flex: 2;
    padding-right: 3rem;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #3182ce;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
}

.services-cards {
    padding: 7rem 5% 5rem;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 680px;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: #718096;
}

.cards-grid-stagger {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
}

.service-card {
    flex-basis: calc(50% - 1.25rem);
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

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

.method-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    min-height: 600px;
}

.method-image,
.method-content {
    flex: 1;
}

.method-image {
    position: relative;
}

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

.method-content {
    padding: 5rem 6%;
    background-color: #edf2f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.method-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.citation {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.citation:hover {
    text-decoration: underline;
}

.testimonials-offset {
    padding: 6rem 5%;
    background-color: #2d3748;
    color: #ffffff;
}

.testimonials-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
    font-weight: 700;
}

.testimonial-blocks {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-item {
    flex: 1;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #cbd5e0;
    font-weight: 600;
}

.form-section-split {
    display: flex;
    min-height: 600px;
    background-color: #f7fafc;
}

.form-intro {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    padding: 5rem 5%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.main-form {
    width: 100%;
    max-width: 480px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3182ce;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fffaf0;
    border-top: 2px solid #fbd38d;
    border-bottom: 2px solid #fbd38d;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #744210;
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 4rem 5%;
    background-color: #1a2332;
    color: #e2e8f0;
}

.footer-left {
    flex: 1;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-left p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

.footer-email {
    color: #a0aec0;
    font-size: 0.9rem;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #63b3ed;
}

.footer-references h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.reference-item {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.reference-item a {
    color: #63b3ed;
    text-decoration: none;
}

.reference-item a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

.cookie-banner.active {
    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.6;
}

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

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

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

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

.page-hero-minimal {
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, #2d3748 0%, #1a2332 100%);
    color: #ffffff;
}

.page-hero-minimal h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    max-width: 900px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e0;
    max-width: 700px;
}

.about-story-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background-color: #ffffff;
}

.story-content {
    flex: 1;
    padding-right: 2rem;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    min-height: 450px;
}

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

.philosophy-blocks {
    padding: 6rem 5%;
    background-color: #f7fafc;
}

.philosophy-blocks h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.philosophy-item {
    flex-basis: calc(50% - 1.25rem);
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #3182ce;
    border-radius: 4px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.team-asymmetric {
    padding: 6rem 5%;
    background-color: #2d3748;
    color: #ffffff;
}

.team-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e0;
}

.team-content {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.team-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-large {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: #63b3ed;
}

.stat-desc {
    font-size: 1rem;
    color: #e2e8f0;
    max-width: 220px;
}

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

.values-section h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.value-block {
    flex: 1;
    padding: 2.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 1.6rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.cta-about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e6f2ff;
}

.services-detailed {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.service-full-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.service-full-block.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-desc {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-features li {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-info-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: #edf2f7;
    border-radius: 6px;
}

.info-item {
    font-size: 0.95rem;
    color: #2d3748;
}

.service-detail-sidebar {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.pricing-card {
    width: 100%;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
}

.services-cta-section {
    padding: 5rem 5%;
    background-color: #edf2f7;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cta-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    max-width: 550px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #718096;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a202c;
}

.modal-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-split-layout {
    display: flex;
    gap: 5rem;
    padding: 5rem 5%;
    background-color: #ffffff;
}

.contact-info-main {
    flex: 1.5;
}

.contact-info-main h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.contact-email-display {
    color: #3182ce;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    margin-top: 0.5rem;
}

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

.contact-box {
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.contact-box h3 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.location-info {
    padding: 5rem 5%;
    background-color: #f7fafc;
}

.location-info h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.location-info > p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.location-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.location-item h4 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.thanks-hero {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.thanks-content h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #48bb78;
    margin-bottom: 3rem;
    font-weight: 600;
}

.thanks-info-box {
    margin-bottom: 3rem;
}

.thanks-info-box h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.thanks-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3182ce;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6f2ff;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.thanks-contact {
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-contact p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.thanks-email {
    font-size: 1.1rem;
    color: #3182ce;
    font-weight: 600;
}

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

.legal-content {
    padding: 5rem 10%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-intro {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #edf2f7;
    border-left: 4px solid #3182ce;
}

.legal-content h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 1.15rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

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

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

.cookies-table th {
    background-color: #f7fafc;
    font-weight: 700;
    color: #1a202c;
}

.cookies-table td {
    font-size: 1rem;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-split,
    .method-split-reverse,
    .about-story-split,
    .form-section-split,
    .contact-split-layout {
        flex-direction: column;
    }

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

    .testimonial-blocks,
    .team-content,
    .values-split-layout,
    .location-details {
        flex-direction: column;
    }

    .cards-grid-stagger .service-card {
        flex-basis: 100%;
    }

    .philosophy-item {
        flex-basis: 100%;
    }

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

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

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

    .intro-asymmetric {
        flex-direction: column;
    }

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