:root {
    --primary-color: #2c2c2c;
    --secondary-color: #6b5b4d;
    --accent-color: #8a7968;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --border-color: #e0ddd8;
    --success-color: #5a7d5f;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

ul {
    list-style: none;
}

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

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

.navbar {
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    z-index: 1001;
}

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

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.nav-menu a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a.active {
    color: var(--secondary-color);
    font-weight: 500;
}

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

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

.hero h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.page-hero {
    padding: 50px 0 40px;
    background-color: var(--light-bg);
    text-align: center;
}

.page-hero h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.page-hero .lead {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

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

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

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

section {
    padding: 60px 0;
}

section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.section-intro p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
    margin: -10px auto 40px;
    max-width: 700px;
}

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

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

.philosophy-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

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

.featured-collection {
    padding: 80px 0;
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.featured-text h2 {
    margin-bottom: 24px;
}

.featured-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.featured-visual {
    width: 100%;
    max-width: 500px;
}

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

.values h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.value-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

.author {
    font-weight: 500;
    color: var(--secondary-color);
}

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

.process h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

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

.step p {
    color: var(--text-medium);
    line-height: 1.6;
}

.stats {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    flex: 1 1 200px;
    padding: 20px;
}

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

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

.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 12px;
}

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

.service-card {
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 20px;
}

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

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.faq {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: var(--white);
    margin-bottom: 16px;
    border-radius: 6px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-medium);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

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

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

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

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

.story {
    padding: 60px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.milestones {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.milestones h2 {
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
}

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

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team .section-intro {
    margin-bottom: 50px;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.member-visual {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.role {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.6;
}

.commitments {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.commitments h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

.commitment-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.vision {
    padding: 80px 0;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-content h2 {
    margin-bottom: 24px;
}

.vision-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.achievements {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.achievement-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

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

.achievement-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

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

.service-full {
    margin-bottom: 80px;
}

.service-full.highlight {
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.service-visual {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.service-intro h2 {
    margin-bottom: 16px;
}

.service-intro p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.pricing-card {
    padding: 24px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    background-color: var(--light-bg);
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.custom-process {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.custom-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.custom-step p {
    color: var(--text-medium);
    line-height: 1.6;
}

.benefits {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
}

.benefit-item img {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

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

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.care-guide {
    padding: 80px 0;
}

.care-guide h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.care-content > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-size: 18px;
}

.care-tips {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.care-tip h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.care-tip p {
    color: var(--text-medium);
    line-height: 1.6;
}

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

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

.contact-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

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

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

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

.contact-card a {
    color: var(--secondary-color);
    font-weight: 500;
}

.about-boutique {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.about-boutique h2 {
    text-align: center;
    margin-bottom: 40px;
}

.boutique-description {
    max-width: 800px;
    margin: 0 auto;
}

.boutique-description p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.directions {
    padding: 80px 0;
}

.directions h2 {
    text-align: center;
    margin-bottom: 50px;
}

.directions-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.direction-option h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

.direction-option p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.visit-info h2 {
    text-align: center;
    margin-bottom: 50px;
}

.visit-tips {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.visit-tip h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

.visit-tip p {
    color: var(--text-medium);
    line-height: 1.6;
}

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

.company-info h2 {
    text-align: center;
    margin-bottom: 40px;
}

.legal-info {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.legal-info p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.thank-you-hero {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.thank-you-content h1 {
    margin-bottom: 20px;
}

.thank-you-content .lead {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.thank-you-content p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

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

.next-steps {
    padding: 80px 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.next-step-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.next-step-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

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

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

.next-step-card a {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: underline;
}

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

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

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

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    overflow-x: auto;
    display: block;
}

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

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

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

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

.footer {
    background-color: var(--primary-color);
    color: var(--light-bg);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 600;
}

.footer-section p {
    color: var(--light-bg);
    line-height: 1.6;
}

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

.footer-section a {
    color: var(--light-bg);
}

.footer-section a:hover {
    color: var(--white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    color: var(--text-medium);
    text-align: center;
}

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

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
    color: var(--text-medium);
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal h2 {
    margin-bottom: 24px;
}

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

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
}

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

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

.modal-actions {
    display: flex;
    justify-content: center;
}

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

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

    .nav-menu a {
        font-size: 16px;
        padding: 0;
        border-bottom: none;
    }

    .hero h1 {
        font-size: 48px;
    }

    .page-hero h1 {
        font-size: 48px;
    }

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

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

    .featured-content {
        flex-direction: row;
        text-align: left;
    }

    .featured-text {
        flex: 1;
    }

    .featured-visual {
        flex: 1;
    }

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

    .testimonial {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .team-member {
        flex: 1 1 calc(50% - 20px);
    }

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

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

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

    .service-visual {
        flex-shrink: 0;
    }

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

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

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

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

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

    .contact-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .next-step-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .footer-section {
        flex: 1;
    }

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

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

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

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

    section {
        padding: 80px 0;
    }

    section h2 {
        font-size: 38px;
    }
}
