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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.navbar {
    background-color: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ad-label {
    color: #aaa;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a2e;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

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

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #d43d54;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.intro-split {
    display: flex;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 4rem;
    background-color: #fff;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

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

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

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a2e;
}

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

.problem-left {
    flex: 1;
}

.problem-right {
    flex: 1;
}

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

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
    font-size: 1.5rem;
}

.insight-split {
    display: flex;
}

.insight-text {
    flex: 1;
    padding: 4rem;
    background-color: #fff;
}

.insight-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.insight-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    color: #e94560;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #e94560;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #d43d54;
    border-color: #d43d54;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #1a1a2e;
    color: #fff;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e94560;
}

.trust-card p {
    color: #ddd;
}

.testimonial-split {
    display: flex;
}

.testimonial-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.testimonial-content {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

.testimonial-content blockquote {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: #fff;
    border-left: 4px solid #e94560;
    border-radius: 4px;
}

.testimonial-content blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    font-style: normal;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.services-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 4rem;
}

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

.service-split {
    display: flex;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    padding: 3rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-price {
    font-size: 1.75rem;
    font-weight: bold;
    color: #e94560;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.75rem 1.5rem;
    background-color: #e94560;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #d43d54;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.select-service.selected {
    background-color: #28a745;
}

.form-split {
    display: flex;
    background-color: #1a1a2e;
}

.form-text {
    flex: 1;
    padding: 4rem;
    color: #fff;
}

.form-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.form-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ddd;
}

.form-benefits {
    list-style: none;
    margin-top: 2rem;
}

.form-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #ddd;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.5rem;
}

.form-container {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

.selected-service-display {
    padding: 1rem;
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 2px solid #e94560;
}

.selected-service-display p {
    margin: 0;
    color: #555;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e94560;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #e94560;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d43d54;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.final-cta-split {
    display: flex;
    background-color: #0f3460;
    color: #fff;
}

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

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

.final-cta-left p {
    font-size: 1.25rem;
    color: #ddd;
}

.final-cta-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-large {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: #d43d54;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 69, 96, 0.3);
}

.footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #e94560;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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 {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #e94560;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #e94560;
    color: #fff;
}

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

.btn-secondary {
    background-color: #555;
    color: #fff;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
}

.hero-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.story-split {
    display: flex;
}

.story-text {
    flex: 1;
    padding: 4rem;
    background-color: #fff;
}

.story-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e94560;
}

.value-item p {
    color: #555;
}

.approach-split {
    display: flex;
}

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

.approach-text {
    flex: 1;
    padding: 4rem;
    background-color: #fff;
}

.approach-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.expertise-split {
    display: flex;
    margin-bottom: 3rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.expertise-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.expertise-content p {
    color: #555;
}

.expertise-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.commitment-section {
    padding: 5rem 2rem;
    background-color: #1a1a2e;
    color: #fff;
}

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

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.commitment-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ddd;
}

.services-detail-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-split {
    display: flex;
    margin-bottom: 5rem;
}

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

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.5rem;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: bold;
    color: #e94560;
    margin-bottom: 2rem;
}

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

.services-cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.services-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-button-large {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #d43d54;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

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

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

.contact-hero p {
    font-size: 1.25rem;
    color: #555;
}

.contact-split-section {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
    padding: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #e94560;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e94560;
    border-radius: 4px;
}

.contact-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.contact-details-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
}

.contact-details-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.detail-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e94560;
}

.detail-card p {
    color: #555;
}

.location-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.location-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.location-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.location-details {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 2rem;
}

.thanks-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.thanks-content {
    flex: 1.5;
}

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

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #fff;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.next-steps {
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    color: #555;
}

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

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

.cta-button-secondary:hover {
    background-color: #e94560;
    color: #fff;
}

.thanks-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.thanks-info {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.thanks-info h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e94560;
}

.info-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

.info-card a {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #d43d54;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

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

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.8;
}

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

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

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #777;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .insight-split,
    .testimonial-split,
    .service-split,
    .form-split,
    .final-cta-split,
    .page-hero-split,
    .story-split,
    .approach-split,
    .expertise-split,
    .service-detail-split,
    .contact-split-section,
    .thanks-container {
        flex-direction: column;
    }

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

    .hero-left h1,
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .trust-grid,
    .values-grid,
    .split-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}