/* ========================================
   Global Styles & Reset
   ======================================== */

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

:root {
    --primary-color: #8b4513;
    --primary-dark: #654321;
    --primary-light: #a0633d;
    --secondary-color: #2c5f2d;
    --secondary-dark: #1e4620;
    --accent-color: #d4a574;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: 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(--primary-dark);
}

ul {
    list-style: none;
}

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

/* ========================================
   Container & Layout
   ======================================== */

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

/* ========================================
   Header & Navigation
   ======================================== */

.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -2px 0 10px var(--shadow);
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Sections
   ======================================== */

section {
    padding: 60px 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* ========================================
   Features
   ======================================== */

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

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* ========================================
   About Preview
   ======================================== */

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-dark);
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================================
   Statistics
   ======================================== */

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--bg-white);
}

/* ========================================
   Services
   ======================================== */

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

.service-highlight {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.service-highlight-content h3 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    margin: 20px 0;
}

.service-benefits li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-highlight-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================================
   Process Steps
   ======================================== */

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

.process-step h3 {
    margin-bottom: 10px;
}

/* ========================================
   Testimonials
   ======================================== */

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

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

.testimonial-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border-top: 4px solid var(--accent-color);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-author strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ========================================
   Regions
   ======================================== */

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

.regions-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.region-card {
    padding: 25px;
    background: var(--bg-white);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.region-card:hover {
    transform: translateX(10px);
}

.region-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ========================================
   Knowledge Section
   ======================================== */

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

.knowledge-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.knowledge-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.knowledge-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* ========================================
   FAQ
   ======================================== */

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* ========================================
   CTA Section
   ======================================== */

.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

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

/* ========================================
   Cookie Banner & Modal
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -2px 10px var(--shadow);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-options {
    margin: 30px 0;
}

.cookie-option {
    margin-bottom: 25px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
}

.cookie-option p {
    margin-top: 10px;
    margin-left: 30px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.cookie-modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================================
   Page Header
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ========================================
   Content Sections
   ======================================== */

.content-section {
    padding: 60px 0;
}

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

.content-main {
    flex: 2;
}

.content-sidebar {
    flex: 1;
}

.info-box {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 25px;
}

.info-box h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-list li {
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

/* ========================================
   Values & Team
   ======================================== */

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

.values-grid,
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card,
.team-member {
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

/* ========================================
   Mission & Philosophy
   ======================================== */

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

.mission-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.mission-point {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
}

.mission-point h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* ========================================
   Achievements
   ======================================== */

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

.achievements-list {
    max-width: 900px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    margin-bottom: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.achievement-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.achievement-content h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* ========================================
   Partnerships
   ======================================== */

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

.partnership-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partnership-text {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
}

.partnership-text h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* ========================================
   Services Page
   ======================================== */

.services-intro {
    background: var(--bg-light);
    padding: 40px 0;
}

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

.services-list {
    padding: 60px 0;
}

.service-item {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.service-title-block h2 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--primary-color);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
}

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

.service-content {
    margin-top: 20px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.service-includes h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.service-includes ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-includes li {
    padding-left: 30px;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-info p {
    margin-bottom: 10px;
}

/* ========================================
   Service Benefits
   ======================================== */

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

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
}

.benefit-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* ========================================
   Booking Process
   ======================================== */

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

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 12px;
}

.process-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-item h3 {
    margin-bottom: 10px;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-info {
    padding: 60px 0;
}

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

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
}

.method-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.method-content h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.method-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-links li {
    padding-left: 20px;
    position: relative;
}

.quick-links li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ========================================
   Office Info
   ======================================== */

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

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

.office-text {
    flex: 1;
}

.office-details {
    flex: 1;
}

.direction-item {
    margin-bottom: 25px;
}

.direction-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ========================================
   Company Details
   ======================================== */

.company-details {
    background: var(--bg-white);
}

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.detail-item strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

/* ========================================
   Cooperation
   ======================================== */

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

.cooperation-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cooperation-item {
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
}

.cooperation-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* ========================================
   Thank You Page
   ======================================== */

.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.next-steps {
    margin-top: 60px;
    padding: 40px 0;
    background: var(--bg-light);
    border-radius: 12px;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.step-card {
    padding: 25px;
    background: var(--bg-white);
    border-radius: 12px;
}

.step-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.helpful-links {
    margin-top: 60px;
    text-align: center;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.links-list li {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

/* ========================================
   Legal Pages
   ======================================== */

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

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

.legal-text h2 {
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

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

/* ========================================
   Responsive Design - Tablet
   ======================================== */

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 0;
    }

    .nav-link {
        padding: 8px 16px;
    }

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

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

    .feature-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .about-content {
        flex-direction: row;
    }

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

    .testimonial-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

    .region-card {
        flex: 1;
        min-width: calc(50% - 10px);
    }

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

    .value-card,
    .team-member {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .achievement-item {
        flex-direction: row;
        align-items: center;
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-details {
        flex-direction: row;
    }

    .service-includes,
    .service-info {
        flex: 1;
    }

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

    .benefit-item {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

    .office-content {
        flex-direction: row;
    }

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

    .cooperation-item {
        flex: 1;
        min-width: calc(50% - 15px);
    }

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

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

    .step-card {
        flex: 1;
        min-width: calc(33.333% - 14px);
    }

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

    .detail-item {
        flex: 1;
        min-width: calc(50% - 10px);
    }

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

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-actions {
        flex-shrink: 0;
    }
}

/* ========================================
   Responsive Design - Desktop
   ======================================== */

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .feature-card {
        min-width: calc(33.333% - 20px);
    }

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

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

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

    .testimonial-card {
        min-width: calc(33.333% - 20px);
    }

    .knowledge-content {
        flex-direction: row;
    }

    .knowledge-item {
        flex: 1;
    }

    .value-card,
    .team-member {
        min-width: calc(25% - 23px);
    }

    .mission-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mission-point {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .partnership-content {
        flex-direction: row;
    }

    .partnership-text {
        flex: 1;
    }

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

    .process-item {
        flex: 1;
        min-width: calc(50% - 13px);
    }
}
