:root {
    --primary-color: #2c5f8d;
    --primary-dark: #1e4668;
    --secondary-color: #d4a574;
    --accent-color: #8ba88f;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

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

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.site-header {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #ffffff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

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

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

.hero-visual {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

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

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

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

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--background-light);
}

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

.section-intro-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

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

.company-story {
    background-color: var(--background-white);
}

.story-highlights {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.highlight-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

.featured-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-feature {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
}

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

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

.process-explanation h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

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

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

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

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

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    font-style: italic;
}

.testimonial p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.testimonial footer {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial cite {
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

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

.company-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-block {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.industry-insights h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.insight-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .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 1.5rem 1.5rem;
    color: var(--text-medium);
}

.trust-indicators h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    text-align: center;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

.trust-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 100px;
}

.timeline-content {
    flex: 1;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-section .section-intro-text {
    margin-bottom: 3rem;
}

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

.team-member {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.philosophy-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.philosophy-block {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

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

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.achievement-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

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

.achievement-item ul {
    list-style-position: outside;
}

.work-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.benefit-content h3 {
    margin-bottom: 0.75rem;
}

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

.service-item {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.service-title {
    flex: 1;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.service-description p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.service-benefits h2,
.service-process h2,
.service-comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 260px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.benefit-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
}

.process-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-phase {
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.comparison-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
}

.contact-intro,
.about-intro,
.services-intro {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 2.5rem;
    background-color: var(--background-white);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

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

.contact-card h3 {
    margin-bottom: 1rem;
}

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

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

.office-locations h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.location-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 2.5rem;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.office-address {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.office-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.directions-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.directions-info h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.directions-info p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.contact-info-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.expectations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expectation-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
}

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

.company-snapshot h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.snapshot-content {
    max-width: 900px;
    margin: 0 auto;
}

.snapshot-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
    justify-content: center;
}

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

.snapshot-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.snapshot-stat span {
    color: var(--text-medium);
}

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

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

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

.thank-you-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-card {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 8px;
    text-align: center;
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.explore-more h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.explore-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.explore-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.explore-card h3 {
    margin-bottom: 1rem;
}

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

.explore-card a {
    font-weight: 600;
}

.legal-content {
    background-color: var(--background-white);
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

.legal-section h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.legal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-section strong {
    color: var(--text-dark);
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-table h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cookie-table ul {
    list-style-type: none;
    padding-left: 0;
}

.cookie-table li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

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

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

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

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: white;
}

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

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

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

.cookie-banner p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.cookie-modal-content {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal h2 {
    margin-bottom: 2rem;
}

.cookie-options {
    margin-bottom: 2rem;
}

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

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

.cookie-option input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: normal;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

    h2 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero .container {
        gap: 30px;
    }

    .service-feature,
    .value-block,
    .insight-card,
    .team-member,
    .philosophy-block,
    .location-card,
    .expectation-item,
    .comparison-item,
    .benefit-card {
        flex: 1 1 100%;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        width: auto;
    }

    section {
        padding: 60px 0;
    }

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

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

    .cookie-modal-content {
        padding: 2rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .benefit-item {
        flex-direction: column;
        gap: 1rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}
