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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
    letter-spacing: -0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1a5f7a;
}

.nav-link.active {
    color: #1a5f7a;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    padding: 3rem;
    margin-left: 8%;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.2);
}

.cta-primary:hover {
    background-color: #145266;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 95, 122, 0.3);
}

.hero-image-diagonal {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 75%;
    transform: rotate(-3deg);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e8e8e8;
}

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

.intro-overlap {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1.5;
    padding-right: 2rem;
}

.intro-block-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

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

.stat-card {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transform: rotate(2deg);
    box-shadow: 0 8px 24px rgba(26, 95, 122, 0.2);
}

.stat-card:nth-child(2) {
    transform: rotate(-2deg);
    margin-left: 2rem;
}

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

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

.services-preview {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 3rem 10%;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: #5a6c7d;
    max-width: 600px;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card.large {
    flex: 1 1 calc(50% - 2rem);
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    color: #5a6c7d;
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 0 1.5rem 1rem;
    display: block;
}

.service-cta {
    display: block;
    text-align: center;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem;
    margin: 1rem 1.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #145266;
}

.testimonial-offset {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-content {
    flex: 1;
    padding-left: 5%;
}

.testimonial-content blockquote {
    border-left: 4px solid #1a5f7a;
    padding-left: 2rem;
}

.testimonial-content p {
    font-size: 1.4rem;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    font-style: normal;
    color: #5a6c7d;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    transform: translateY(-30px);
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background-color: #e8e8e8;
    object-fit: cover;
}

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

.form-container-offset {
    max-width: 600px;
    margin: 0 auto 0 15%;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-container-offset h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-container-offset > p {
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a5f7a;
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.submit-btn {
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #145266;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

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

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

.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: #bdc3c7;
    font-size: 0.9rem;
}

.about-hero {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero-content h1 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 3rem;
    line-height: 1.3;
}

.about-content-irregular {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text-offset {
    flex: 1.3;
    padding-right: 3rem;
}

.about-text-offset h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text-offset p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-image-overlap {
    flex: 1;
    transform: translateY(-40px) rotate(-2deg);
}

.about-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background-color: #e8e8e8;
    object-fit: cover;
}

.philosophy-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1a5f7a;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

.team-section-offset {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section-offset h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    margin-left: 10%;
}

.team-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: 10%;
    line-height: 1.7;
}

.team-visual {
    margin-left: 5%;
    margin-right: 10%;
}

.team-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background-color: #e8e8e8;
    object-fit: cover;
}

.impact-numbers {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
}

.impact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.impact-stat {
    flex: 1 1 calc(25% - 3rem);
    min-width: 200px;
    text-align: center;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    color: #1a5f7a;
    margin-bottom: 1rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
}

.impact-stat p {
    font-size: 1rem;
    line-height: 1.5;
}

.cta-about {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.15rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.2);
}

.cta-button:hover {
    background-color: #145266;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 95, 122, 0.3);
}

.services-hero {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.15rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: #e8e8e8;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.service-age {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    display: block;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.service-detail-content ul {
    list-style-position: inside;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.service-detail-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

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

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a5f7a;
}

.enroll-btn {
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.enroll-btn:hover {
    background-color: #145266;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.enrollment-cta {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.enrollment-cta h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.enrollment-cta p {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.contact-link-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link-btn:hover {
    background-color: #145266;
    transform: translateY(-2px);
}

.contact-hero {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    transform: translateY(40px);
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background-color: #e8e8e8;
    object-fit: cover;
}

.directions-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.directions-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.directions-section p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-contact {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.cta-btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-hero {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

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

.thanks-content > p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-details ul {
    list-style-position: inside;
    color: #5a6c7d;
    margin-top: 1rem;
}

.thanks-details li {
    margin-bottom: 0.6rem;
}

.selected-service-info {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.thanks-next-steps p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

.btn-secondary,
.btn-primary {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #2c3e50;
    border: 1px solid #d0d7de;
}

.btn-secondary:hover {
    background-color: #e8e8e8;
}

.btn-primary {
    background-color: #1a5f7a;
    color: #ffffff;
}

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

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background-color: #e8e8e8;
    object-fit: cover;
}

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

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

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

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

.legal-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.legal-content li {
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.legal-content a {
    color: #1a5f7a;
    text-decoration: none;
}

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

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

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #5a6c7d;
}

@media (max-width: 1200px) {
    .hero-content-offset {
        margin-left: 5%;
    }

    .hero-image-diagonal {
        width: 50%;
    }
}

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        transform: none;
    }

    .intro-overlap,
    .about-content-irregular,
    .testimonial-offset,
    .contact-content-split,
    .thanks-hero {
        flex-direction: column;
    }

    .about-image-overlap,
    .contact-visual {
        transform: none;
    }

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

    .section-header-offset {
        margin-left: 0;
    }

    .team-section-offset h2,
    .team-intro,
    .team-visual {
        margin-left: 0;
        margin-right: 0;
    }

    .form-container-offset {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .service-card {
        flex: 1 1 100%;
    }

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

    .impact-stat {
        flex: 1 1 100%;
    }

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

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

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