* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

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

.btn-accept:hover {
    background-color: #3a7750;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.75rem;
    color: #6c757d;
    padding: 0.4rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #2d5f3f;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background-color: #1a2332;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #3a7750;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45,95,63,0.3);
}

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

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

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    overflow: hidden;
}

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

.intro-text {
    padding: 5rem 7%;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a2332;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

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

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

.value-text,
.value-image {
    flex: 1;
}

.value-text {
    padding: 5rem 7%;
}

.value-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.value-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.value-image {
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

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

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

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

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

.approach-image,
.approach-text {
    flex: 1;
}

.approach-image {
    overflow: hidden;
}

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

.approach-text {
    padding: 5rem 7%;
}

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

.approach-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

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

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

.methodology-text,
.methodology-image {
    flex: 1;
}

.methodology-text {
    padding: 5rem 7%;
}

.methodology-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.methodology-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.methodology-image {
    overflow: hidden;
}

.methodology-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.services-preview {
    padding: 5rem 7%;
    background-color: #ffffff;
}

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

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

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

.service-card p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 1.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #3a7750;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 7%;
    background-color: #f8f9fa;
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.form-info p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.benefit-item {
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #2d5f3f;
    border-radius: 4px;
    font-weight: 600;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    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: #2d5f3f;
}

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

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

.trust-split {
    display: flex;
    align-items: center;
    padding: 5rem 7%;
}

.trust-text {
    flex: 1.2;
    padding-right: 4rem;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.trust-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
}

.cta-final {
    padding: 5rem 7%;
    background-color: #1a2332;
    text-align: center;
    color: #ffffff;
}

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

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

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

.cta-large:hover {
    background-color: #3a7750;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,95,63,0.3);
}

.footer-split {
    background-color: #1a2332;
    color: #d1d5db;
    padding: 4rem 7% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

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

.footer-column a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #9ca3af;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.9rem;
}

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 7%;
    background-color: #2d5f3f;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.15rem;
    color: #d1f0d1;
    max-width: 600px;
}

.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 7%;
}

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

.story-text,
.story-image {
    flex: 1;
}

.story-text {
    padding-right: 4rem;
}

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

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.story-image {
    overflow: hidden;
    border-radius: 8px;
}

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

.values-split {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 5rem 7%;
}

.values-image,
.values-text {
    flex: 1;
}

.values-image {
    overflow: hidden;
    border-radius: 8px;
    margin-right: 4rem;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.values-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.values-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.team-section {
    padding: 5rem 7%;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.team-intro {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.team-member p {
    font-size: 1rem;
    color: #4a5568;
}

.experience-split {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 5rem 7%;
}

.experience-image,
.experience-text {
    flex: 1;
}

.experience-image {
    overflow: hidden;
    border-radius: 8px;
    margin-right: 4rem;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.experience-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.experience-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.commitment-split {
    display: flex;
    align-items: center;
    padding: 5rem 7%;
}

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

.commitment-text,
.commitment-image {
    flex: 1;
}

.commitment-text {
    padding-right: 4rem;
}

.commitment-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.commitment-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.commitment-image {
    overflow: hidden;
    border-radius: 8px;
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.cta-about {
    padding: 5rem 7%;
    background-color: #2d5f3f;
    text-align: center;
    color: #ffffff;
}

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

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

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 7%;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

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

.service-image {
    overflow: hidden;
    border-radius: 8px;
}

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

.service-content {
    padding: 0 4rem;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.service-content ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.service-content li {
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 1.5rem 0 0.5rem;
}

.service-duration {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.comparison-section {
    padding: 5rem 7%;
    background-color: #f8f9fa;
}

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

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comparison-row {
    display: flex;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.header-row {
    background-color: #2d5f3f;
    color: #ffffff;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 0 1rem;
    font-size: 0.95rem;
}

.cta-services {
    padding: 5rem 7%;
    background-color: #1a2332;
    text-align: center;
    color: #ffffff;
}

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

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

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 7%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26,35,50,0.9), transparent);
    color: #ffffff;
}

.visit-split {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 5rem 7%;
}

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

.visit-text {
    flex: 1;
    padding-right: 4rem;
}

.visit-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.visit-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.visit-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.faq-section {
    padding: 5rem 7%;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.faq-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.cta-contact {
    padding: 5rem 7%;
    background-color: #2d5f3f;
    text-align: center;
    color: #ffffff;
}

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

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

.thanks-hero {
    padding: 6rem 7%;
    background: linear-gradient(135deg, #2d5f3f 0%, #1a4d32 100%);
    text-align: center;
    color: #ffffff;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #d1f0d1;
}

.selected-service-info {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.next-steps-split {
    padding: 5rem 7%;
}

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

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

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

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

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

.step-card p {
    font-size: 1rem;
    color: #4a5568;
}

.while-waiting {
    padding: 5rem 7%;
    background-color: #f8f9fa;
}

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

.waiting-text {
    flex: 1;
}

.waiting-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.waiting-text p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.waiting-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-box {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    border-left: 4px solid #2d5f3f;
    transition: all 0.3s ease;
}

.link-box:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.link-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.link-box p {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
}

.waiting-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.waiting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.contact-reminder {
    padding: 5rem 7%;
    text-align: center;
}

.contact-reminder h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.contact-reminder p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.email-display-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 1.5rem 0;
}

.contact-note {
    font-size: 0.95rem;
    color: #6c757d;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 7%;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2d5f3f;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a2332;
}

.cookie-table td {
    color: #4a5568;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-split,
    .intro-split,
    .value-split,
    .approach-split,
    .methodology-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .experience-split,
    .commitment-split,
    .service-detail-split,
    .contact-split,
    .visit-split,
    .waiting-split,
    .form-split {
        flex-direction: column;
    }

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

    .intro-text,
    .value-text,
    .approach-text,
    .methodology-text,
    .story-text,
    .values-text,
    .experience-text,
    .commitment-text,
    .service-content,
    .visit-text {
        padding-right: 0;
    }

    .values-image,
    .experience-image {
        margin-right: 0;
        margin-bottom: 2rem;
    }

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

    .trust-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

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

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

    .team-grid,
    .faq-grid {
        flex-direction: column;
    }

    .team-member,
    .faq-item {
        flex: 1 1 100%;
    }

    .comparison-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-cell {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1,
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .intro-text h2,
    .value-text h2,
    .approach-text h2,
    .methodology-text h2 {
        font-size: 1.8rem;
    }

    .services-preview h2,
    .cta-final h2,
    .cta-about h2,
    .cta-services h2,
    .cta-contact h2 {
        font-size: 2rem;
    }

    .cookie-content {
        font-size: 0.9rem;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}