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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style-position: inside;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a7b;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background-color: #edf2f7;
    border-radius: 4px;
    font-weight: 500;
}

.nav-links a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    background-color: #f7fafc;
}

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

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #234e52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 123, 0.3);
}

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

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

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

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

.content-left img,
.content-right img {
    width: 100%;
    border-radius: 12px;
    background-color: #e2e8f0;
}

.content-right h2,
.content-left h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-right p,
.content-left p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #f7fafc;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.25rem;
    color: #4a5568;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #4a5568;
    margin: 0 1.5rem 1rem;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.75rem;
    color: #2c7a7b;
    font-weight: 700;
    margin: 0 1.5rem 1.5rem;
}

.btn-select-service {
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 1rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-select-service:hover {
    background-color: #234e52;
}

.trust-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.content-right-full,
.content-left-full {
    flex: 1;
}

.content-right-full h2,
.content-left-full h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-right-full p,
.content-left-full p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.content-left-full img,
.content-right-full img {
    width: 100%;
    border-radius: 12px;
    background-color: #e2e8f0;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2c7a7b;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #718096;
    margin-top: 0.5rem;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f7fafc;
}

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-container-centered h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.form-container-centered > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c7a7b;
    box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.1);
}

.btn-submit {
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 1.125rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #234e52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 123, 0.3);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #edf2f7;
}

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

.disclaimer-text {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p,
.footer-column ul {
    font-size: 0.95rem;
    color: #cbd5e0;
    line-height: 1.8;
}

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

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

.footer-column a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #a0aec0;
}

.page-hero {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-centered h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-centered p {
    font-size: 1.5rem;
    color: #e6fffa;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #f7fafc;
}

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

.values-container h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 300px;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2c7a7b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.team-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.section-header-left h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-left p {
    font-size: 1.25rem;
    color: #4a5568;
}

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

.team-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

.team-image img {
    width: 100%;
    border-radius: 12px;
    background-color: #e2e8f0;
}

.team-text h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    font-size: 1rem;
    color: #2c7a7b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-text p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.process-section {
    padding: 6rem 2rem;
    background-color: #f7fafc;
}

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

.process-content h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2c7a7b;
    line-height: 1;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.cta-section-alt {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.5rem;
    color: #e6fffa;
    margin-bottom: 2.5rem;
}

.page-hero-services {
    background: linear-gradient(135deg, rgba(44, 122, 123, 0.95) 0%, rgba(35, 78, 82, 0.95) 100%),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1400&q=80') center/cover;
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c7a7b;
}

.hero-overlay {
    max-width: 900px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-overlay p {
    font-size: 1.5rem;
    color: #e6fffa;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-block {
    margin-bottom: 5rem;
}

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    background-color: #e2e8f0;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-content > p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-features li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

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

.price-block {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.price-label {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    color: #2c7a7b;
    font-weight: 800;
}

.info-section {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

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

.info-container h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-container p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.info-list {
    margin: 1.5rem 0;
}

.info-list li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.form-section-services {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.contact-hero {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 1.5rem;
    color: #e6fffa;
}

.contact-details-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    color: #2c7a7b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.contact-map-placeholder {
    flex: 1;
}

.map-replacement {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background-color: #e2e8f0;
}

.map-replacement 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), transparent);
    padding: 2rem;
}

.map-overlay p {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.visit-section {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.visit-content {
    max-width: 1000px;
    margin: 0 auto;
}

.visit-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.visit-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.faq-container h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 300px;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f7fafc;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.thanks-content {
    margin-bottom: 3rem;
}

.thanks-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-selected {
    font-weight: 600;
    color: #2c7a7b;
    font-size: 1.25rem;
}

.thanks-next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

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

.timeline-content h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin: 0;
}

.thanks-info-box {
    background-color: #edf2f7;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info-box h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.thanks-info-box p {
    font-size: 1.05rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c7a7b;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2c7a7b;
    border: 2px solid #2c7a7b;
}

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

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

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

.legal-container h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

.legal-content a {
    color: #2c7a7b;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #234e52;
}

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

.cookies-table thead {
    background-color: #f7fafc;
}

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

.cookies-table th {
    font-weight: 600;
    color: #2d3748;
}

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

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-right {
        min-height: 400px;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .hero-left h1,
    .hero-content-centered h1,
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .section-header-center h2,
    .values-container h2,
    .process-content h2,
    .faq-container h2 {
        font-size: 2rem;
    }

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

    .values-grid,
    .process-steps,
    .faq-grid {
        flex-direction: column;
    }

    .value-item,
    .step,
    .faq-item {
        min-width: 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
