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

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d7a4c;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.96);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: #fff;
}

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

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

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

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

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

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

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

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    list-style: none;
    flex-direction: column;
    box-shadow: var(--shadow);
}

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

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a {
    display: block;
    padding: 16px 20px;
    color: var(--text-dark);
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
    background-color: var(--bg-light);
}

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

.hero-content-left {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-content-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image-right {
    min-height: 350px;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.intro-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.intro-image {
    margin-bottom: 30px;
}

.intro-image img {
    border-radius: 8px;
}

.intro-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.values-grid {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.problem-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: #fff;
}

.problem-content {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.problem-intro {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.problem-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-left h3,
.problem-right h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.problem-left ul,
.problem-right ul {
    list-style: none;
    padding-left: 0;
}

.problem-left li,
.problem-right li {
    padding: 10px 0 10px 28px;
    position: relative;
    line-height: 1.6;
}

.problem-left li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.problem-right li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5fd68a;
    font-weight: bold;
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-form {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.service-option {
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-card {
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + .service-card {
    border-color: var(--secondary-color);
    background-color: #f0f7f3;
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.form-section {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-section h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.testimonial {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.quote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.author {
    font-weight: 600;
    color: var(--text-light);
}

.approach-split {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.approach-text {
    margin-bottom: 30px;
}

.approach-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.link-arrow {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.link-arrow:hover {
    color: var(--primary-color);
}

.approach-image img {
    border-radius: 8px;
}

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

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.cta-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.main-footer {
    background-color: var(--text-dark);
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

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

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

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 14px 24px;
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #e55a2b;
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.page-hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-split,
.team-split {
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.about-image,
.team-image {
    margin-bottom: 30px;
}

.about-image img,
.team-image img {
    border-radius: 8px;
}

.about-text h2,
.team-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p,
.team-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.philosophy-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.values-detailed h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-item {
    display: flex;
    gap: 24px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.approach-detail {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.approach-detail h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.approach-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.services-intro-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro-image {
    margin-bottom: 30px;
}

.services-intro-image img {
    border-radius: 8px;
}

.services-intro-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.service-detail {
    display: flex;
    flex-direction: column;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    line-height: 1.6;
    color: var(--text-light);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.service-detail-image img {
    border-radius: 8px;
}

.pricing-info {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.pricing-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.note {
    font-size: 15px;
    font-style: italic;
    margin-top: 8px;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

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

.contact-additional {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.contact-additional h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-info {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    color: var(--text-dark);
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

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

.step {
    display: flex;
    gap: 20px;
    text-align: left;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding-top: 8px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
}

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

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.legal-page {
    padding: 40px 20px 80px;
    background-color: var(--bg-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-date {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookie-table td {
    color: var(--text-light);
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 24px 20px;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

    .hero-content-left {
        flex: 1;
        padding: 80px 60px;
    }

    .hero-image-right {
        flex: 1;
    }

    .intro-split {
        flex-direction: row;
        gap: 60px;
    }

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

    .intro-image {
        flex: 1;
        margin-bottom: 0;
    }

    .intro-text {
        flex: 1;
    }

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

    .value-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .problem-split {
        flex-direction: row;
        gap: 60px;
    }

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

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

    .service-option {
        flex: 0 0 calc(50% - 10px);
    }

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

    .form-grid input {
        flex: 0 0 calc(50% - 8px);
    }

    .form-grid textarea {
        flex: 0 0 100%;
    }

    .testimonials-split {
        flex-direction: row;
        gap: 40px;
    }

    .testimonial {
        flex: 1;
    }

    .approach-split {
        flex-direction: row;
        gap: 60px;
    }

    .approach-text {
        flex: 1;
        margin-bottom: 0;
    }

    .approach-image {
        flex: 1;
    }

    .about-split,
    .team-split {
        flex-direction: row;
        gap: 60px;
    }

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

    .about-image,
    .team-image {
        flex: 1;
        margin-bottom: 0;
    }

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

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

    .philosophy-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .services-intro-split {
        flex-direction: row;
        gap: 60px;
    }

    .services-intro-image {
        flex: 1;
        margin-bottom: 0;
    }

    .services-intro-text {
        flex: 1;
    }

    .service-detail {
        flex-direction: row;
        gap: 80px;
    }

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

    .service-detail-content {
        flex: 1;
        margin-bottom: 0;
    }

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

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

    .pricing-card {
        flex: 1;
    }

    .contact-split {
        flex-direction: row;
        gap: 80px;
    }

    .contact-info {
        flex: 1;
        margin-bottom: 0;
    }

    .contact-map {
        flex: 1;
    }

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

    .footer-col {
        flex: 0 0 calc(33.333% - 27px);
    }

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

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

    .legal-content {
        padding: 60px 50px;
    }
}

@media (min-width: 1024px) {
    .hero-content-left h1 {
        font-size: 54px;
    }

    .sticky-cta {
        display: block;
    }

    .service-option {
        flex: 0 0 calc(33.333% - 14px);
    }
}
