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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #229954;
}

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 32px;
}

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

.nav-right a:hover {
    color: #27ae60;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 8%;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.hero-right {
    background-size: cover;
    background-position: center;
}

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

.cta-primary {
    background: #27ae60;
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-left,
.intro-right {
    flex: 1;
}

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

.intro-right {
    padding: 80px 8%;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.services-preview {
    padding: 100px 5%;
    background: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.btn-service {
    background: #27ae60;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #229954;
    transform: translateY(-2px);
}

.expertise-split {
    display: flex;
    align-items: stretch;
}

.expertise-left,
.expertise-right {
    flex: 1;
}

.expertise-left {
    padding: 80px 8%;
    background: #ffffff;
}

.expertise-left h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.expertise-item {
    margin-bottom: 32px;
}

.expertise-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

.expertise-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.testimonials-split {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials-split h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.testimonial-split {
    display: flex;
    gap: 60px;
}

.testimonial-content {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    font-weight: 600;
    color: #27ae60;
    font-size: 15px;
}

.form-split {
    display: flex;
    align-items: stretch;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    padding: 80px 8%;
    background: #f8f9fa;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.form-right {
    padding: 80px 8%;
    background: #ffffff;
    display: flex;
    align-items: center;
}

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

.main-form input,
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.main-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.final-cta-split {
    padding: 100px 5%;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-secondary {
    background: #ffffff;
    color: #27ae60;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-split {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #27ae60;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

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

.sticky-cta button {
    background: #27ae60;
    color: #ffffff;
    padding: 16px 28px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.5);
}

.page-hero-split {
    padding: 100px 5%;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story-split,
.approach-split,
.team-split,
.commitment-split {
    display: flex;
    align-items: center;
}

.approach-split.reverse,
.commitment-split.reverse {
    flex-direction: row-reverse;
}

.story-left,
.story-right,
.approach-left,
.approach-right,
.team-left,
.team-right,
.commitment-left,
.commitment-right {
    flex: 1;
}

.story-left img,
.approach-right img,
.team-right img,
.commitment-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-right,
.approach-left,
.team-left,
.commitment-right {
    padding: 80px 8%;
}

.story-right h2,
.approach-left h2,
.team-left h2,
.commitment-right h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.story-right p,
.approach-left p,
.team-left p,
.commitment-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.approach-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.approach-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 24px;
}

.values-split {
    padding: 100px 5%;
    background: #f8f9fa;
}

.values-split h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-about {
    padding: 100px 5%;
    background: #27ae60;
    text-align: center;
}

.cta-about h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

.btn-cta-large {
    display: inline-block;
    background: #ffffff;
    color: #27ae60;
    padding: 18px 48px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.services-intro-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.intro-left {
    padding: 80px 8%;
}

.intro-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-right {
    padding: 0;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
}

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

.detail-left,
.detail-right {
    flex: 1;
}

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

.detail-right {
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-right h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.detail-right h4 {
    font-size: 20px;
    margin: 28px 0 16px;
    color: #1a1a1a;
}

.detail-right ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.detail-right ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.detail-right ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.btn-select {
    background: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #229954;
    transform: translateY(-2px);
}

.packages-split {
    padding: 80px 5%;
    background: #f8f9fa;
    text-align: center;
}

.packages-split h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.packages-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-cta-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background: #27ae60;
}

.cta-left,
.cta-right {
    flex: 1;
}

.cta-left {
    padding-right: 60px;
}

.cta-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-left p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-right {
    text-align: right;
}

.contact-split {
    display: flex;
    padding: 80px 0;
}

.contact-info-left,
.contact-form-right {
    flex: 1;
    padding: 0 8%;
}

.contact-info-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-info-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #27ae60;
}

.contact-item p,
.contact-item a {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    text-decoration: none;
}

.contact-item a:hover {
    color: #27ae60;
}

.contact-note {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0;
}

.contact-form-right h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-form-right p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.form-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-bottom: 24px;
}

.location-split {
    display: flex;
    align-items: center;
    background: #f8f9fa;
}

.location-left,
.location-right {
    flex: 1;
}

.location-left {
    padding: 80px 8%;
}

.location-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.location-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

.faq-split {
    padding: 100px 5%;
}

.faq-split h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.faq-item {
    margin-bottom: 40px;
}

.faq-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-final-cta {
    padding: 100px 5%;
    background: #27ae60;
    text-align: center;
}

.contact-final-cta h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-final-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

.thanks-hero {
    padding: 100px 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 48px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.thanks-icon {
    font-size: 64px;
    color: #27ae60;
    margin-bottom: 20px;
}

#service-confirmation {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0;
}

.thanks-next {
    margin-bottom: 60px;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.step {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #27ae60;
}

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.thanks-links h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-links p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.thanks-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-thanks {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-thanks:hover {
    background: #229954;
    transform: translateY(-2px);
}

.legal-page {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #27ae60;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #5a6c7d;
}

.legal-content a {
    color: #27ae60;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .expertise-split,
    .form-split,
    .about-story-split,
    .approach-split,
    .team-split,
    .commitment-split,
    .services-intro-split,
    .service-detail-split,
    .service-cta-split,
    .contact-split,
    .location-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .approach-split.reverse,
    .commitment-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

    .testimonial-split {
        flex-direction: column;
        gap: 30px;
    }

    .next-steps {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .value-card {
        min-width: 100%;
    }

    .cta-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .cta-right {
        text-align: center;
    }

    .legal-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-content h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .services-preview h2,
    .testimonials-split h2,
    .values-split h2,
    .faq-split h2 {
        font-size: 32px;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta button {
        padding: 14px 24px;
        font-size: 14px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h1 {
        font-size: 32px;
    }
}