:root {
    --primary-color: #2d5f3f;
    --secondary-color: #8b6f47;
    --accent-color: #f4e8d8;
    --dark-color: #1a1a1a;
    --light-color: #f9f9f9;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --white: #fff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
    padding: 4rem 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 900px;
    margin: 2rem auto 0;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta-primary,
.cta-secondary,
.cta-white,
.cta-inline,
.cta-service {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.cta-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

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

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.cta-white {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-inline {
    background: none;
    color: var(--primary-color);
    padding: 0.5rem 0;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0;
}

.cta-inline:hover {
    border-color: var(--secondary-color);
}

.cta-service {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.cta-service:hover {
    background: var(--white);
    color: var(--secondary-color);
}

section {
    padding: 4rem 0;
}

.intro-section {
    background: var(--white);
}

.intro-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.bg-light {
    background: var(--light-color);
}

.bg-dark {
    background: var(--dark-color);
    color: var(--white);
}

.bg-accent {
    background: var(--accent-color);
}

.philosophy-section {
    padding: 5rem 0;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-block h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.image-block img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.section-title-light {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
}

.services-highlight {
    background: var(--white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-icon img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow::after {
    content: ' →';
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.testimonial-section {
    background: var(--accent-color);
    padding: 5rem 0;
}

.testimonial-large {
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-color);
    border: none;
}

.testimonial-large p {
    margin-bottom: 2rem;
}

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

.process-section {
    padding: 5rem 0;
}

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

.step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
}

.expertise-section {
    padding: 5rem 0;
}

.expertise-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.expertise-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.expertise-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.expertise-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta-form-section {
    padding: 5rem 0;
}

.cta-form-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.values-section {
    background: var(--white);
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    text-align: center;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-cookie.accept:hover {
    background: var(--secondary-color);
}

.btn-cookie.reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie.reject:hover {
    background: var(--white);
    color: var(--dark-color);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.subheader {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.service-detail-card.reverse {
    flex-direction: column;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-content h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-cta-section {
    text-align: center;
    padding: 4rem 0;
}

.service-cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-section {
    padding: 4rem 0;
    background: var(--white);
}

.form-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 2.5rem;
}

.story-section {
    padding: 4rem 0;
}

.story-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.member-image {
    max-width: 250px;
    margin: 0 auto 1.5rem;
}

.member-image img {
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.7;
}

.values-detailed {
    padding: 5rem 0;
}

.values-detailed h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-block.reverse {
    flex-direction: column;
}

.value-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.achievements-section {
    padding: 5rem 0;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.approach-section {
    padding: 4rem 0;
    background: var(--white);
}

.approach-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.approach-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.partners-section {
    padding: 5rem 0;
}

.partners-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partner-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.partner-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.partner-item p {
    color: var(--text-light);
}

.cta-about {
    background: var(--accent-color);
    padding: 4rem 0;
    text-align: center;
}

.cta-about h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-details {
    flex: 1;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.map-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.newsletter-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.privacy-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.thanks-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.service-confirmation p {
    margin: 0;
    color: var(--text-color);
}

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

.next-steps h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.additional-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.additional-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.info-links a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-reminder {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-reminder p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-reminder a {
    font-weight: 600;
}

.testimonials-thanks {
    padding: 4rem 0;
}

.testimonials-thanks h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-grid blockquote {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-grid p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

.legal-page {
    padding: 4rem 0;
    background: var(--white);
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-page p {
    line-height: 1.7;
    color: var(--text-color);
}

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

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

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

.cookie-table th {
    background: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-table tr:hover {
    background: var(--light-color);
}

.back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-link a {
    color: var(--primary-color);
    font-weight: 600;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero-section {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        min-height: 700px;
    }

    .hero-content {
        flex: 1;
        text-align: left;
    }

    .hero-image {
        flex: 1;
        margin-top: 0;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

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

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 300px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1;
        min-width: 250px;
    }

    .expertise-layout {
        flex-direction: row;
        align-items: center;
    }

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

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: 250px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

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

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

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 250px;
    }

    .value-block {
        flex-direction: row;
        align-items: center;
    }

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

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

    .achievements-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .achievement-item {
        flex: 1;
        min-width: 200px;
    }

    .partners-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .partner-item {
        flex: 1;
        min-width: 300px;
    }

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

    .contact-details,
    .contact-map {
        flex: 1;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        flex: 1;
    }

    .newsletter-form button {
        flex: 0 0 auto;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .info-links {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .testimonial-grid {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-content p {
        text-align: left;
    }

    .cookie-actions {
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-menu li {
        padding: 0 20px;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }

    .sticky-cta {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
}