/* ================================================
   Reset and Base Styles
   ================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ================================================
   Container
   ================================================ */

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

/* ================================================
   Header and Navigation
   ================================================ */

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0.5rem 20px;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: #333;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d4af37;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

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

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

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

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

.hero {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4b8 100%);
    padding: 4rem 0;
}

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

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

/* ================================================
   Page Hero
   ================================================ */

.page-hero {
    background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
    padding: 3rem 0;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #d4af37;
    color: #fff;
}

.btn-primary:hover {
    background-color: #c19a2e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background-color: #d4af37;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-outline:hover {
    background-color: #333;
    color: #fff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

section {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* ================================================
   Philosophy Section
   ================================================ */

.philosophy {
    background-color: #f9f9f9;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.philosophy-card h3 {
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    color: #666;
}

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

.featured-services {
    background-color: #fff;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-feature {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

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

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

.service-info h3 {
    margin-bottom: 0.75rem;
    color: #d4af37;
}

.service-info p {
    color: #666;
}

/* ================================================
   Story Section
   ================================================ */

.story {
    background-color: #f9f9f9;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

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

.decorative-shape {
    width: 200px;
    height: 200px;
}

/* ================================================
   Benefits Section
   ================================================ */

.benefits {
    background-color: #fff;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
    flex-shrink: 0;
}

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

.benefit-content p {
    color: #666;
}

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

.testimonials {
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #333;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* ================================================
   Process Section
   ================================================ */

.process {
    background-color: #fff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

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

.process-step h3 {
    margin-bottom: 0.75rem;
    color: #d4af37;
}

.process-step p {
    color: #666;
}

/* ================================================
   Stats Section
   ================================================ */

.stats {
    background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

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

.faq {
    background-color: #f9f9f9;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    font-size: 1.5rem;
    color: #d4af37;
    transition: transform 0.3s;
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.8;
}

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

.cta {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: #fff;
    text-align: center;
}

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

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

/* ================================================
   About Page
   ================================================ */

.about-intro {
    background-color: #fff;
}

.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column {
    flex: 1;
}

.column p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.highlight-box h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #fff;
    opacity: 0.95;
}

/* ================================================
   Values Section
   ================================================ */

.values {
    background-color: #f9f9f9;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.value-card h3 {
    margin-bottom: 0.75rem;
    color: #d4af37;
}

.value-card p {
    color: #666;
}

/* ================================================
   Team Section
   ================================================ */

.team {
    background-color: #fff;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.member-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

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

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member .role {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: #666;
}

/* ================================================
   Milestones / Timeline Section
   ================================================ */

.milestones {
    background-color: #f9f9f9;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    flex-shrink: 0;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
}

/* ================================================
   Approach Section
   ================================================ */

.approach {
    background-color: #fff;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #d4af37;
}

.approach-item h3 {
    margin-bottom: 0.75rem;
    color: #d4af37;
}

.approach-item p {
    color: #666;
}

/* ================================================
   Trust Indicators
   ================================================ */

.trust-indicators {
    background-color: #f9f9f9;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.trust-item h3 {
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: #666;
}

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

.services-intro {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-list {
    background-color: #fff;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #d4af37;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.service-header h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #d4af37;
    white-space: nowrap;
}

.service-card p {
    color: #666;
}

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

.service-benefits {
    background-color: #f9f9f9;
}

.benefits-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-column {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

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

.benefit-column p {
    color: #666;
}

/* ================================================
   Comparison Table
   ================================================ */

.comparison {
    background-color: #fff;
}

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

.comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row.header {
    display: none;
}

.comparison-cell {
    padding: 1rem;
}

.comparison-cell:nth-child(1)::before {
    content: "Esigenza: ";
    font-weight: 700;
    color: #d4af37;
}

.comparison-cell:nth-child(2)::before {
    content: "Servizio: ";
    font-weight: 700;
    color: #d4af37;
}

.comparison-cell:nth-child(3)::before {
    content: "Durata: ";
    font-weight: 700;
    color: #d4af37;
}

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

.contact-info {
    background-color: #fff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

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

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

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.contact-card a {
    color: #d4af37;
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

/* ================================================
   About Location
   ================================================ */

.about-location {
    background-color: #f9f9f9;
}

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

.location-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* ================================================
   Directions
   ================================================ */

.directions {
    background-color: #fff;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-card {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.direction-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.direction-card h3 {
    margin-bottom: 0.75rem;
    color: #d4af37;
}

.direction-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* ================================================
   Booking Info
   ================================================ */

.booking-info {
    background-color: #f9f9f9;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.info-box h2 {
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.info-box p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.info-box ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.info-box li {
    margin-bottom: 0.5rem;
    color: #555;
}

.highlight-text {
    background-color: #fff9e6;
    padding: 1rem;
    border-left: 4px solid #d4af37;
    margin-top: 1rem;
}

/* ================================================
   Company Info
   ================================================ */

.company-info {
    background-color: #fff;
}

.company-details {
    max-width: 600px;
    margin: 0 auto;
}

.company-details p {
    margin-bottom: 0.75rem;
    color: #555;
}

.company-details strong {
    color: #333;
}

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

.thank-you-content {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-message {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

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

.thank-you-message h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.thank-you-message p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.legal-content {
    background-color: #fff;
    padding: 3rem 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.update-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #555;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-section ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-section a {
    color: #d4af37;
    text-decoration: underline;
}

.legal-section strong {
    color: #333;
}

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

.footer {
    background-color: #222;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.8;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* ================================================
   Cookie Banner
   ================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ================================================
   Cookie Modal
   ================================================ */

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

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

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

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

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

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

.cookie-option span {
    font-weight: 600;
    color: #333;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    color: #666;
    font-size: 0.9rem;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

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

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

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

    .philosophy-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .services-showcase {
        gap: 2.5rem;
    }

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

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .benefits-list {
        gap: 2.5rem;
    }

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

    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .approach-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .service-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

    .benefit-column {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .comparison-row.header {
        display: flex;
        background-color: #d4af37;
        color: #fff;
    }

    .comparison-cell {
        flex: 1;
    }

    .comparison-cell:nth-child(1)::before,
    .comparison-cell:nth-child(2)::before,
    .comparison-cell:nth-child(3)::before {
        content: none;
    }

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

    .contact-card {
        flex: 1;
    }

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

    .direction-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .footer-section {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .modal-actions {
        flex-direction: row;
    }
}

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

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .menu-toggle {
        display: none;
    }

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

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

    .philosophy-card {
        flex: 1;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        flex: 1;
    }

    .trust-grid {
        flex-wrap: nowrap;
    }

    .trust-item {
        flex: 1;
    }

    .benefits-columns {
        flex-wrap: nowrap;
    }

    .benefit-column {
        flex: 1;
    }

    .contact-grid {
        flex-wrap: nowrap;
    }

    .directions-grid {
        flex-wrap: nowrap;
    }

    .direction-card {
        flex: 1;
    }

    .footer-section {
        flex: 1 1 auto;
    }
}