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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-right a:hover {
    color: #2d5a3d;
}

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

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #dfe4e8;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5a3d;
    padding: 16px 38px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2d5a3d;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}

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

.services-intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    background-color: #dfe4e8;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 20px;
}

.core-services {
    padding: 100px 60px;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 18px;
    color: #6c757d;
}

.service-grid-alternating {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card-left,
.service-card-right {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: #dfe4e8;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-details ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-details ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a5568;
}

.service-details ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 600;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    margin-top: 25px;
}

.additional-services-compact {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.additional-services-compact h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.compact-service-list {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.compact-service {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.compact-service h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.compact-service p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 18px;
}

.compact-price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #2d5a3d;
}

.form-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.form-wrapper-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    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: #2d5a3d;
}

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

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

.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding: 70px 60px;
    background-color: #2d5a3d;
}

.indicator-item {
    text-align: center;
    color: #ffffff;
}

.indicator-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.indicator-item p {
    font-size: 16px;
    opacity: 0.9;
}

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

.process-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 45px;
    color: #1a1a1a;
}

.process-step {
    margin-bottom: 35px;
    padding-left: 60px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3d;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.process-image {
    flex: 1;
    background-color: #dfe4e8;
    position: relative;
    overflow: hidden;
}

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

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

.footer-columns {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    max-width: 1200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #333333;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #888888;
    max-width: 1000px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
}

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.cookie-btn-reject:hover {
    background-color: #f8f9fa;
}

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

.about-hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 20px;
    color: #6c757d;
}

.about-hero-image {
    flex: 1;
    background-color: #dfe4e8;
    position: relative;
    overflow: hidden;
}

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

.about-story {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    background-color: #dfe4e8;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.team-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-grid {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.team-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.approach-split {
    display: flex;
    min-height: 500px;
}

.approach-image {
    flex: 1;
    background-color: #dfe4e8;
    position: relative;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-about {
    padding: 80px 60px;
    background-color: #2d5a3d;
    text-align: center;
}

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

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

.services-header {
    padding: 80px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 20px;
    color: #6c757d;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #dfe4e8;
    position: relative;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 80px 60px;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a5568;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 20px;
}

.pricing-detail {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 35px;
}

.pricing-detail h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pricing-detail p {
    font-size: 16px;
    margin-bottom: 10px;
}

.pricing-detail p strong {
    color: #1a1a1a;
}

.additional-services-detail {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

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

.additional-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.additional-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 18px;
}

.additional-price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #2d5a3d;
}

.service-process {
    padding: 100px 60px;
    background-color: #ffffff;
}

.service-process h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-services {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-header {
    padding: 80px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 20px;
    color: #6c757d;
}

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

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5a3d;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map {
    flex: 1;
    background-color: #dfe4e8;
    position: relative;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    padding: 35px;
    color: #ffffff;
}

.map-overlay p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-additional {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.additional-info {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-contact {
    padding: 80px 60px;
    background-color: #2d5a3d;
    text-align: center;
}

.cta-contact h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.selected-service {
    margin-bottom: 40px;
}

.service-confirmation {
    font-size: 16px;
    color: #2d5a3d;
    background-color: #f0f7f3;
    padding: 15px 25px;
    border-radius: 6px;
    display: inline-block;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-return {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-return:hover {
    background-color: #234a30;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5a3d;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #2d5a3d;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.thanks-contact {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
}

.thanks-contact p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 8px;
}

.contact-email {
    font-size: 18px;
    font-weight: 600;
    color: #2d5a3d;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

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

.legal-date {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.cookie-table {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.cookie-table h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.cookie-table ul {
    list-style: none;
    padding-left: 0;
}

.cookie-table ul li {
    padding-left: 0;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-split {
        padding: 20px 25px;
    }

    .nav-right {
        gap: 20px;
    }

    .nav-right a {
        font-size: 14px;
    }

    .hero-split,
    .services-intro-split,
    .process-split,
    .about-hero-split,
    .about-story,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .process-content,
    .about-hero-content,
    .approach-content,
    .service-detail-content,
    .contact-info {
        padding: 50px 25px;
    }

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

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

    .compact-service-list,
    .team-grid,
    .additional-info,
    .footer-columns {
        flex-direction: column;
    }

    .form-wrapper-split {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .additional-card {
        flex: 1 1 100%;
    }
}