* {
    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: #333;
    background-color: #fff;
}

.main-nav {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 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: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

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

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

.cta-primary {
    background-color: #3498db;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.cta-primary:hover {
    background-color: #2980b9;
}

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

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

.split-left-content {
    flex: 1;
}

.split-left-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-left-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.split-right-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.split-right-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

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

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

.insight-content {
    flex: 1;
}

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

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

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

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.testimonial-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.testimonial-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

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

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

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

.service-card-modern {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card-modern:nth-child(even) {
    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: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

.service-features span {
    font-size: 0.95rem;
    color: #666;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-top: auto;
}

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

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

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.form-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefits li {
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #2980b9;
}

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

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

.cta-secondary {
    background-color: #fff;
    color: #2c3e50;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #fff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

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

.page-hero-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

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

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

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

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

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

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

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

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

.about-left h2,
.about-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-left p,
.about-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

.value-card {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.team-split {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

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

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

.team-content {
    flex: 1;
}

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

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

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

.cta-about .cta-content h2 {
    color: #fff;
}

.cta-about .cta-content p {
    color: #ecf0f1;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #3498db;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.services-page-hero {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.services-hero-text {
    flex: 1;
}

.services-hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-hero-text p {
    font-size: 1.2rem;
    color: #555;
}

.services-hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-detailed {
    padding: 3rem 2rem;
    background-color: #fff;
}

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

.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: auto;
    object-fit: cover;
}

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

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

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

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.3rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
}

.btn-select {
    background-color: #3498db;
    color: #fff;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
}

.services-info {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

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

.info-item {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

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

.info-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

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

.contact-hero-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.contact-hero-left {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

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

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

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

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

.contact-content-split {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

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

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

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

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-method p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.5rem;
}

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

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

.contact-approach {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.approach-steps {
    display: flex;
    gap: 2rem;
}

.approach-step {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.approach-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.contact-faq-split {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.faq-content {
    flex: 1;
}

.faq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

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

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

.contact-final-cta {
    padding: 5rem 2rem;
    background-color: #3498db;
    text-align: center;
}

.thanks-hero {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-main {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.thanks-service-info {
    margin: 2rem 0;
}

.selected-service {
    font-size: 1.1rem;
    color: #3498db;
    padding: 1rem;
    background-color: #fff;
    border-radius: 6px;
    display: inline-block;
}

.thanks-secondary {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary,
.btn-outline {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary {
    background-color: #3498db;
    color: #fff;
    border: none;
}

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

.btn-outline {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background-color: #3498db;
    color: #fff;
}

.thanks-next-steps {
    padding: 5rem 2rem;
    background-color: #fff;
}

.next-steps-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.next-steps-grid {
    display: flex;
    gap: 2rem;
}

.next-step-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.next-step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-step-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.thanks-contact-reminder {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    text-align: center;
}

.contact-reminder-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-reminder-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 0.5rem;
}

.office-hours {
    font-size: 1rem;
    color: #bdc3c7;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

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

.legal-container ul li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-date {
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split,
    .split-container,
    .insight-wrapper,
    .form-split,
    .about-container,
    .team-split,
    .services-hero-split,
    .service-detail-split,
    .contact-content-split,
    .contact-faq-split,
    .page-hero-split,
    .contact-hero-split {
        flex-direction: column;
    }

    .service-card-modern:nth-child(even) {
        flex-direction: column;
    }

    .testimonial-grid,
    .values-grid,
    .info-grid,
    .approach-steps,
    .next-steps-grid {
        flex-direction: column;
    }

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

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

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