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

:root {
    --primary: #2d5016;
    --primary-light: #4a7c2a;
    --primary-dark: #1a3009;
    --accent: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-cream: #f8f5f2;
    --border-light: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

.ad-disclosure {
    background: var(--primary-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

.navigation {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-modern {
    display: flex;
    min-height: 600px;
    background: var(--bg-cream);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 500px;
    line-height: 1.5;
}

.hero-visual {
    flex: 1;
    background: var(--border-light);
}

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

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

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

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

.intro-cards {
    background: var(--bg-white);
    padding: 60px 0;
}

.card-grid-intro {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 12px;
}

.info-card.accent {
    background: var(--primary);
    color: var(--bg-white);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
}

.services-preview {
    background: var(--bg-cream);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--primary-dark);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--shadow);
}

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

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

.service-details {
    padding: 32px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-dark);
}

.service-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.contact-form-section {
    background: var(--bg-white);
}

.contact-form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.main-form {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: var(--bg-cream);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-section {
    background: var(--bg-cream);
}

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--primary-dark);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.feature-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-inline {
    background: var(--bg-white);
}

.testimonials-inline h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--primary-dark);
}

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

.testimonial {
    background: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

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

.testimonial cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.final-cta {
    background: var(--primary-dark);
    color: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 32px 32px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

.email-text {
    color: var(--bg-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.btn-accept:hover {
    transform: scale(1.05);
}

.btn-reject {
    background: var(--border-light);
    color: var(--text-dark);
}

.btn-reject:hover {
    transform: scale(1.05);
}

.page-header {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 80px 32px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

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

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

.service-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.service-visual {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: var(--border-light);
}

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

.cta-services {
    background: var(--bg-cream);
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

.cta-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.about-hero {
    background: var(--bg-cream);
}

.about-intro {
    margin-bottom: 40px;
}

.about-intro h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.about-intro p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
}

.about-image-main {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--border-light);
}

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

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

.philosophy-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--border-light);
}

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

.values-section {
    background: var(--bg-cream);
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--primary-dark);
}

.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

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

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

.team-member {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.role {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.experience-section {
    background: var(--bg-cream);
}

.experience-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.experience-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.achievement-list {
    list-style: none;
    margin-top: 28px;
}

.achievement-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

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

.experience-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--border-light);
}

.experience-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--primary-dark);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.process-step {
    flex: 1 1 calc(25% - 32px);
    min-width: 240px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-about {
    background: var(--bg-cream);
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.contact-header {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 80px 32px 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 20px;
    opacity: 0.9;
}

.contact-main {
    background: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.info-section {
    margin-bottom: 60px;
}

.info-section h2 {
    font-size: 36px;
    margin-bottom: 36px;
    font-weight: 700;
    color: var(--primary-dark);
}

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

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

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 8px 0;
    font-size: 17px;
    color: var(--text-dark);
}

.visit-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.visit-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.location-visual {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: var(--border-light);
    max-height: 700px;
}

.location-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    background: var(--bg-cream);
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--primary-dark);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.collaboration-section {
    background: var(--bg-white);
    text-align: center;
}

.collaboration-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

.collaboration-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.thanks-main {
    background: var(--bg-cream);
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.confirmation-details {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.confirmation-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-dark);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--primary);
    font-weight: 600;
}

.next-steps {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-dark);
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.6;
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 48px;
    background: var(--bg-white);
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s;
}

.btn-secondary:hover {
    transform: scale(1.05);
}

.contact-reminder {
    font-size: 16px;
    color: var(--text-light);
}

.thanks-additional {
    background: var(--bg-white);
}

.thanks-additional h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
    color: var(--primary-dark);
}

.additional-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.additional-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-page {
    background: var(--bg-white);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--primary);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.legal-content a:hover {
    color: var(--primary-dark);
}

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

.cookie-table thead {
    background: var(--bg-cream);
}

.cookie-table th,
.cookie-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid var(--border-light);
    font-size: 15px;
}

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

@media (max-width: 1024px) {
    .hero-modern {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 40px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .service-block {
        flex-direction: column;
        gap: 40px;
    }

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

    .philosophy-grid,
    .experience-content,
    .contact-layout {
        flex-direction: column;
    }
}

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

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .card-grid-intro {
        flex-direction: column;
    }

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

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

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

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