* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-cookie-accept {
    background-color: var(--highlight-color);
    color: white;
}

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

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

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

.main-nav {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
}

.hero-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.hero-visual {
    height: 50vh;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

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

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

.cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.intro-offset {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background-color: var(--bg-light);
}

.intro-narrow h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--primary-color);
}

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

.intro-aside blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    padding: 2rem;
    background-color: white;
    border-left: 4px solid var(--highlight-color);
    margin-bottom: 1rem;
}

.intro-aside cite {
    display: block;
    font-size: 0.938rem;
    color: var(--light-text);
    font-style: normal;
    padding-left: 2rem;
}

.stats-cards {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    padding: 2.5rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
}

.challenge-section {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
}

.challenge-text {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.challenge-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.challenge-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--light-text);
}

.challenge-image {
    height: 400px;
    overflow: hidden;
}

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

.cta-inline {
    color: var(--highlight-color);
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
}

.cta-inline:hover {
    text-decoration: underline;
}

.method-showcase {
    padding: 4rem 2rem;
    background-color: white;
}

.section-title-center {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.method-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.method-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

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

.method-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-text);
}

.services-overview {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.services-overview h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-block {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-block.featured {
    border: 2px solid var(--highlight-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--highlight-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-color);
}

.service-block p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--light-text);
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

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

.btn-select-service,
.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-select-service:hover,
.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonials-stagger {
    padding: 4rem 2rem;
    background-color: white;
}

.testimonials-stagger h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.testimonial-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.testimonial-card.offset {
    background-color: var(--primary-color);
    color: white;
    border-left-color: white;
}

.testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.938rem;
    font-style: normal;
    color: var(--light-text);
}

.testimonial-card.offset cite {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container > p {
    margin-bottom: 2rem;
    color: var(--light-text);
    line-height: 1.7;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
}

.final-cta {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.main-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col p,
.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--highlight-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-btn {
    padding: 1rem 1.5rem;
    background-color: var(--highlight-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background-color: #d43850;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

.about-hero {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
}

.philosophy-text {
    margin-bottom: 2rem;
}

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

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

.philosophy-image {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.principles-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.principles-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.principle-card {
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.principle-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-text);
}

.story-section {
    padding: 4rem 2rem;
    background-color: white;
}

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

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.team-approach {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.team-approach h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.team-intro {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--light-text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-feature {
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
}

.team-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-feature p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-text);
}

.values-visual {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    background-color: white;
}

.values-text {
    margin-bottom: 2rem;
}

.values-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.values-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
}

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

.values-image {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.commitment-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.commitment-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.services-hero {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail {
    padding: 2rem 2rem 4rem;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 2rem;
}

.service-detail-info {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-label {
    display: inline-block;
    background-color: var(--highlight-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-info h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.service-detail-info p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.service-detail-info h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.service-detail-info ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.service-detail-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
}

.service-detail-image {
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

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

.comparison-table {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

.comparison-cell:first-child {
    text-align: left;
    flex: 1.5;
}

.contact-hero {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
}

.contact-main {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 3rem;
}

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

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.contact-detail a {
    color: var(--highlight-color);
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-map {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
}

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

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

.thanks-section {
    padding: 4rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    font-size: 4rem;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

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

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

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

.thanks-next {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-next h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.thanks-steps li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-color);
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background-color: var(--highlight-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background-color: var(--highlight-color);
    color: white;
}

.btn-primary:hover {
    background-color: #d43850;
}

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

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

.legal-content {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.legal-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--light-text);
}

.legal-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: white;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--light-text);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
        min-height: 100vh;
    }

    .hero-content,
    .hero-visual {
        flex: 1;
    }

    .hero-visual {
        height: auto;
    }

    .intro-offset {
        flex-direction: row;
        gap: 4rem;
    }

    .intro-narrow {
        flex: 1.5;
    }

    .intro-aside {
        flex: 1;
    }

    .stats-cards {
        flex-direction: row;
    }

    .challenge-section {
        flex-direction: row;
    }

    .challenge-text,
    .challenge-image {
        flex: 1;
    }

    .challenge-image {
        height: auto;
    }

    .method-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .method-item {
        flex: calc(50% - 1rem);
    }

    .service-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-block {
        flex: calc(50% - 1rem);
    }

    .testimonial-row {
        flex-direction: row;
    }

    .testimonial-card.offset {
        transform: translateY(2rem);
    }

    .footer-grid {
        flex-direction: row;
    }

    .philosophy-split {
        flex-direction: row;
        gap: 3rem;
    }

    .philosophy-text,
    .philosophy-image {
        flex: 1;
    }

    .philosophy-image {
        height: auto;
    }

    .principles-grid {
        flex-direction: row;
    }

    .team-features {
        flex-direction: row;
    }

    .values-visual {
        flex-direction: row;
        gap: 3rem;
    }

    .values-text,
    .values-image {
        flex: 1;
    }

    .values-image {
        height: auto;
    }

    .service-detail-block {
        flex-direction: row;
        gap: 3rem;
    }

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

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

    .service-detail-image {
        height: auto;
    }

    .comparison-cell {
        font-size: 1rem;
    }

    .contact-main {
        flex-direction: row;
    }

    .contact-info,
    .contact-map {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .service-blocks {
        flex-direction: column;
    }

    .service-block {
        flex: 1;
    }
}