/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #c9a961;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --transition: all 0.3s ease;
}

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

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

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

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

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

ul {
    list-style: none;
}

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

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: block;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Navigation */
.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.hero-image {
    max-width: 400px;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

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

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

/* Sections */
section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Grids */
.philosophy-grid,
.collections-grid,
.services-grid,
.testimonials-grid,
.stats-grid,
.expertise-content,
.benefits-grid,
.reasons-grid,
.team-grid,
.tailoring-grid,
.contact-grid,
.directions-grid,
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Cards */
.philosophy-item,
.collection-card,
.service-card,
.testimonial-card,
.expertise-card,
.benefit-item,
.reason-card,
.team-member,
.tailoring-card,
.contact-info-card,
.direction-card,
.info-card-simple {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.philosophy-item:hover,
.collection-card:hover,
.service-card:hover,
.reason-card:hover,
.tailoring-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.philosophy-icon,
.collection-icon,
.reason-icon,
.benefit-icon,
.team-icon,
.contact-icon,
.direction-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.philosophy-icon img,
.collection-icon img,
.reason-icon img,
.benefit-icon img,
.team-icon img,
.contact-icon img,
.direction-icon img {
    width: 100%;
    height: 100%;
}

.philosophy-item h3,
.collection-card h3,
.service-card h3,
.expertise-card h3,
.benefit-item h3,
.reason-card h3,
.team-member h3,
.tailoring-card h3,
.contact-info-card h3,
.direction-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.philosophy-item p,
.collection-card p,
.service-card p,
.expertise-card p,
.benefit-item p,
.reason-card p,
.tailoring-card p,
.contact-info-card p,
.direction-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
}

/* Content Blocks */
.story-content,
.about-intro-content,
.location-content,
.commitment-content,
.values-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.story-text,
.about-text,
.location-text,
.commitment-text,
.values-text {
    flex: 1;
}

.story-text h2,
.about-text h2,
.location-text h2,
.commitment-text h2,
.values-text h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-text p,
.about-text p,
.location-text p,
.commitment-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.story-visual,
.about-visual,
.location-visual,
.commitment-visual,
.values-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-visual img,
.about-visual img,
.location-visual img,
.commitment-visual img,
.values-visual img {
    max-width: 400px;
    width: 100%;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step,
.step-detailed {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.process-step h3,
.step-detailed h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-step p,
.step-detailed p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--bg-light);
    border: none;
}

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

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

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

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

/* Stats */
.stats-grid {
    background-color: var(--primary-color);
    padding: 40px 20px;
    border-radius: 8px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    color: var(--bg-white);
    min-width: 150px;
    margin: 15px;
}

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

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

/* Values */
.value-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

/* Timeline */
.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 30px;
    border-left: 3px solid var(--secondary-color);
}

.timeline-item {
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -30px;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transform: translateX(-35px);
}

.timeline-content {
    padding-left: 40px;
}

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

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

/* Team */
.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Philosophy Blocks */
.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-block {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.philosophy-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.philosophy-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Commitment List */
.commitment-list {
    list-style: disc;
    margin-left: 20px;
    margin-top: 15px;
}

.commitment-list li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Services Category */
.services-category {
    padding: 60px 0;
}

.services-category.alt-bg {
    background-color: var(--bg-light);
}

.category-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
}

.category-icon {
    width: 80px;
    height: 80px;
}

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

.category-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.category-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comparison-row {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.header-row {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
}

.comparison-cell {
    padding: 10px;
    flex: 1;
}

.comparison-cell:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-row.header-row .comparison-cell {
    color: var(--bg-white);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: var(--bg-white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    transition: var(--transition);
}

.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 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-final,
.visit-invitation {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a62 100%);
    color: var(--bg-white);
    text-align: center;
}

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

.cta-content.centered {
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a62 100%);
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

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

/* Legal Content */
.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.legal-text ul,
.legal-text ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-text ul {
    list-style: disc;
}

.legal-text ol {
    list-style: decimal;
}

.legal-text li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.legal-text em {
    display: block;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

/* Cookie Table */
.cookie-table {
    overflow-x: auto;
    margin: 30px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
}

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

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

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

/* Contact Page */
.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.company-info {
    max-width: 700px;
    margin: 0 auto;
}

.company-block {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.company-block h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.company-block p {
    margin-bottom: 10px;
    color: var(--text-light);
}

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

/* Map Placeholder */
.map-notice {
    background-color: var(--bg-light);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
}

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

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

.map-notice p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Newsletter Section */
.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.newsletter-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* Thank You Page */
.thankyou-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.thankyou-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thankyou-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.thankyou-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--bg-white);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

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

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

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

.modal.active {
    display: flex;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-body {
    padding: 20px;
}

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

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

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

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

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Utility Classes */
.centered {
    text-align: center;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }

    .nav {
        display: block;
    }

    .hero {
        padding: 80px 0;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

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

    .hero-cta {
        flex-direction: row;
    }

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

    .philosophy-item,
    .collection-card {
        flex: 0 0 calc(50% - 15px);
    }

    .services-grid,
    .testimonials-grid,
    .benefits-grid,
    .reasons-grid,
    .team-grid,
    .tailoring-grid,
    .contact-grid,
    .directions-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card,
    .testimonial-card,
    .benefit-item,
    .reason-card,
    .team-member,
    .tailoring-card,
    .contact-info-card,
    .direction-card {
        flex: 0 0 calc(50% - 15px);
    }

    .expertise-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expertise-card {
        flex: 0 0 calc(50% - 15px);
    }

    .story-content,
    .about-intro-content,
    .location-content,
    .commitment-content,
    .values-content {
        flex-direction: row;
        align-items: center;
    }

    .category-header {
        flex-direction: row;
        text-align: left;
    }

    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
    }

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

    .footer-section {
        flex: 0 0 calc(25% - 20px);
    }

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

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

    .info-cards {
        flex-direction: row;
    }

    .info-card-simple {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .philosophy-grid,
    .collections-grid {
        flex-wrap: nowrap;
    }

    .philosophy-item,
    .collection-card {
        flex: 1;
    }

    .services-grid,
    .team-grid,
    .tailoring-grid,
    .contact-grid,
    .directions-grid {
        flex-wrap: nowrap;
    }

    .service-card,
    .team-member,
    .tailoring-card,
    .contact-info-card,
    .direction-card {
        flex: 1;
    }

    .testimonials-grid,
    .benefits-grid,
    .reasons-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card,
    .benefit-item,
    .reason-card {
        flex: 1;
    }

    .expertise-content {
        flex-wrap: nowrap;
    }

    .expertise-card {
        flex: 1;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

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

    .process-step {
        flex: 0 0 calc(50% - 10px);
    }

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

    .philosophy-block {
        flex: 0 0 calc(50% - 15px);
    }

    .value-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 0 0 calc(50% - 15px);
    }

    .info-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 0 0 calc(50% - 15px);
    }

    .steps-detailed {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }

    .step-detailed {
        flex: 0 0 calc(50% - 15px);
    }
}
