* {
    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;
}

html {
    scroll-behavior: smooth;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    text-decoration: none;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    background-color: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

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

.nav-links a:hover {
    color: #2d3748;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-left {
    flex: 1;
    padding-right: 4rem;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    background-color: #f7fafc;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.cta-primary:hover {
    background-color: #2c5282;
}

.cta-primary-large {
    display: inline-block;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-primary-large:hover {
    background-color: #2c5282;
}

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

.cta-secondary:hover {
    background-color: #2b6cb0;
    color: #ffffff;
}

.intro-section {
    background-color: #f7fafc;
    padding: 4rem 2rem;
}

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

.intro-content p {
    font-size: 1.3rem;
    color: #2d3748;
    line-height: 1.8;
    font-style: italic;
}

.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.split-image {
    flex: 1;
    background-color: #edf2f7;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-content {
    flex: 1;
    padding-left: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.insight-panel {
    background-color: #2d3748;
    color: #ffffff;
    padding: 5rem 2rem;
}

.insight-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.insight-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.insight-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.insight-text a {
    color: #90cdf4;
    text-decoration: none;
}

.insight-text a:hover {
    text-decoration: underline;
}

.location-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.location-showcase h2 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 3.5rem;
    text-align: center;
    font-weight: 700;
}

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

.location-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.card-image {
    background-color: #edf2f7;
    height: 220px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-card h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    font-weight: 600;
}

.location-card p {
    color: #4a5568;
    line-height: 1.7;
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 1rem;
}

.problem-amplification {
    background-color: #f7fafc;
    padding: 6rem 2rem;
}

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

.problem-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.problem-visual {
    flex: 1;
    background-color: #e2e8f0;
}

.problem-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-container blockquote {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #2b6cb0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-container blockquote p {
    font-size: 1.2rem;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-container cite {
    font-style: normal;
    color: #718096;
    font-weight: 600;
}

.services-preview {
    background-color: #f7fafc;
    padding: 6rem 2rem;
}

.services-preview h2 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.services-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.service-link {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-link:hover {
    border-bottom-color: #2b6cb0;
}

.service-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

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

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

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

.trust-points {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.trust-point {
    flex: 1;
}

.trust-point h4 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-point p {
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

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

.form-container {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 3rem;
}

.form-intro {
    margin-bottom: 2.5rem;
}

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    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: #2b6cb0;
}

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

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

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #cbd5e0;
}

.references {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.btn-accept {
    background-color: #2b6cb0;
    color: #ffffff;
}

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

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

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

.about-hero {
    padding: 4rem 2rem;
}

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

.about-content {
    flex: 1;
}

.about-content h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.about-image {
    flex: 1;
    background-color: #edf2f7;
}

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

.mission-section {
    background-color: #f7fafc;
    padding: 5rem 2rem;
}

.mission-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.mission-wrapper p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-section {
    padding: 5rem 2rem;
}

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

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

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

.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.values-section {
    background-color: #f7fafc;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.team-philosophy {
    padding: 5rem 2rem;
}

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

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

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

.services-hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

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

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

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

.detail-content {
    flex: 1;
}

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

.price-tag {
    font-size: 1.6rem;
    color: #2b6cb0;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.detail-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

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

.detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.detail-content li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #4a5568;
    line-height: 1.7;
}

.detail-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: bold;
}

.detail-image {
    flex: 1;
    background-color: #edf2f7;
}

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

.additional-service {
    background-color: #f7fafc;
    padding: 4rem 2rem;
}

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

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

.additional-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.additional-content ul {
    list-style: none;
    padding-left: 0;
}

.additional-content li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #4a5568;
    line-height: 1.7;
}

.additional-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: bold;
}

.services-cta {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.contact-section {
    padding: 4rem 2rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-item h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

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

.email-display {
    color: #4a5568;
    font-weight: 500;
}

.hours-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #718096;
}

.contact-image {
    flex: 1;
    background-color: #edf2f7;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consultation-info {
    background-color: #f7fafc;
    padding: 5rem 2rem;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.expect-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.expect-item h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expect-item p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 4rem 2rem;
}

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

.thanks-content {
    flex: 1.2;
}

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

.thanks-lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

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

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

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

.interim-resources {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
}

.interim-resources h2 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.interim-resources p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.resource-link {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.resource-link:hover {
    border-bottom-color: #2b6cb0;
}

.thanks-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.thanks-cta p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.thanks-visual {
    flex: 1;
    background-color: #edf2f7;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.selected-service-info {
    background-color: #e6f2ff;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    color: #2d3748;
}

.legal-content {
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.effective-date {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-container p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-container li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: #2b6cb0;
    text-decoration: none;
}

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

.contact-info-legal {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #2b6cb0;
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-reverse,
    .split-layout,
    .about-split,
    .approach-split,
    .detail-split,
    .contact-wrapper,
    .thanks-container {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .problem-content,
    .approach-content {
        padding-right: 0;
        padding-left: 0;
    }

    .trust-points,
    .expectation-grid {
        flex-direction: column;
    }

    .locations-grid,
    .values-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero-left h1,
    .about-content h1,
    .services-hero h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}