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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b6f47;
    --accent-color: #c9a96e;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --background-light: #f8f7f5;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
    --success-color: #2d5a3d;
    --error-color: #b54a4a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--background-white);
    overflow-x: hidden;
}

.ad-notice {
    background-color: var(--background-light);
    color: var(--text-medium);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--background-light);
}

.hero-left {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-white);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-left p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    background-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.intro-section {
    padding: 120px 80px;
    background-color: var(--background-white);
}

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

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.intro-text a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.intro-text a:hover {
    color: var(--secondary-color);
}

.intro-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

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

.problem-section {
    padding: 100px 80px;
    background-color: var(--background-light);
}

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

.problem-section h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
}

.problem-section > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 60px;
}

.insight-cards {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.insight-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.solution-split {
    display: flex;
    min-height: 600px;
    background-color: var(--background-white);
}

.solution-image {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

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

.solution-text h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.solution-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.services-section {
    padding: 120px 80px;
    background-color: var(--background-light);
}

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

.services-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 0 1 calc(50% - 20px);
    background-color: var(--background-white);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.service-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-select {
    padding: 14px 30px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #7a5f3a;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 100px 80px;
    background-color: var(--background-white);
}

.testimonial-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background-color: var(--background-light);
    padding: 40px 45px;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
}

.form-section {
    padding: 120px 80px;
    background-color: var(--background-light);
}

.form-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-section > div > p {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.contact-form {
    background-color: var(--background-white);
    padding: 50px;
    border-radius: 4px;
    max-width: 700px;
    margin: 0 auto;
}

.service-display {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    display: none;
}

.service-display.active {
    display: block;
}

.service-display strong {
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: var(--text-dark);
    color: #e0e0e0;
    padding: 80px 60px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

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

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

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

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #3a3a3a;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white;
}

.footer-references p {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-references a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #252525;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.7;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-header {
    padding: 80px 80px 60px;
    background-color: var(--background-light);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-medium);
}

.about-content {
    padding: 100px 80px;
    background-color: var(--background-white);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.method-section {
    padding: 100px 80px;
    background-color: var(--background-light);
}

.method-section h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
}

.method-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.method-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-block {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 4px;
    border-left: 4px solid var(--secondary-color);
}

.method-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.method-block p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    padding: 100px 80px;
    background-color: var(--background-white);
}

.team-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.team-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    background-color: var(--background-light);
    padding: 40px 30px;
    border-radius: 4px;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-member .role {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.values-section {
    padding: 100px 80px;
    background-color: var(--background-white);
}

.values-section h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-section {
    padding: 100px 80px;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 80px;
    background-color: var(--background-white);
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

.service-detail-content li {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 25px 0;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

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

.premium-service {
    background-color: var(--background-light);
    padding: 60px;
    border-radius: 4px;
    margin-top: 60px;
}

.comparison-section {
    padding: 100px 80px;
    background-color: var(--background-light);
}

.comparison-section h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comparison-item {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

.comparison-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.comparison-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-section {
    padding: 80px 80px;
    background-color: var(--background-white);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-block p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.email-display {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.map-placeholder 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: 30px;
}

.map-overlay p {
    color: white;
    font-size: 0.95rem;
    margin: 0;
}

.faq-section {
    padding: 100px 80px;
    background-color: var(--background-light);
}

.faq-section h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 80px;
    background-color: var(--background-white);
    min-height: 70vh;
}

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

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thanks-content {
    text-align: left;
    margin-top: 50px;
}

.thanks-content > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    text-align: center;
}

.thanks-info {
    margin-bottom: 50px;
}

.selected-service-box {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.thanks-note {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 50px;
}

.thanks-note h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-note ul {
    margin-left: 20px;
}

.thanks-note li {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.legal-page {
    padding: 80px 80px 100px;
    background-color: var(--background-white);
}

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-section p {
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.browser-instructions h4 {
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-gdpr,
.faq-cookies {
    margin-top: 30px;
}

.faq-gdpr h3,
.faq-cookies h3 {
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-split,
    .solution-split,
    .content-wrapper,
    .contact-wrapper {
        flex-direction: column;
    }

    .hero-left,
    .solution-text {
        padding: 60px 40px;
    }

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

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

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

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

    .service-detail {
        flex-direction: column !important;
    }

    .footer-container {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-container,
    .hero-left,
    .solution-text,
    .intro-section,
    .problem-section,
    .services-section,
    .testimonial-section,
    .form-section,
    .about-content,
    .method-section,
    .team-section,
    .values-section,
    .cta-section,
    .services-detailed,
    .comparison-section,
    .contact-section,
    .faq-section,
    .thanks-section,
    .legal-page {
        padding: 40px 20px;
    }

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

    .intro-text h2,
    .solution-text h2,
    .about-text h2 {
        font-size: 1.8rem;
    }

    .services-section h2,
    .testimonial-section h2 {
        font-size: 2rem;
    }

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

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

    .footer-col {
        flex: 1 1 100%;
    }
}