/* 
* Qstonefield - Custom Styles
* Dark theme with mohair-inspired accents
* Last updated: 19 January 2026
*/

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
    
    --primary-dark: #121212;
    --secondary-dark: #1E1E1E;
    --accent-light: #C8A27D;
    --accent-secondary: #8C7851;
    --text-primary: #F5F5F5;
    --text-secondary: #BDBDBD;
    --highlight: #D4AF37;
    --success: #4A7C59;
    --error: #A94442;
    --border: #333333;
    
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;
    
    
    --transition-slow: 0.5s ease;
    --transition-medium: 0.3s ease;
    --transition-fast: 0.2s ease;
    
    
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition-medium);
}

a:hover, a:focus {
    color: var(--highlight);
    text-decoration: none;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all var(--transition-medium);
}

.btn-primary {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--primary-dark);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--highlight);
    border-color: var(--highlight);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--accent-light);
    color: var(--accent-light);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--accent-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-outline-light:hover, .btn-outline-light:focus {
    background-color: var(--text-primary);
    color: var(--primary-dark);
}

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

.section-padding {
    padding: var(--section-padding);
}

.bg-pattern {
    background-color: var(--secondary-dark);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238c7851' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.section-title {
    margin-bottom: 2.5rem;
}

.section-title h2 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
}

.img-wrapper {
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.img-wrapper img {
    transition: transform var(--transition-slow);
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
}

.text-primary {
    color: var(--accent-light) !important;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.navbar {
    padding: 1rem 0;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    font-weight: 500;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-light);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--text-primary);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after,
.navbar-dark .navbar-nav .active > .nav-link::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-brand img {
    transition: all var(--transition-medium);
    width: 200px;
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    position: relative;
}

.hero-image {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Page Title Section
--------------------------------------------------------------*/
.page-title-section {
    background-color: var(--secondary-dark);
    padding: 4rem 0;
    position: relative;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238c7851' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-secondary);
}

.breadcrumb-item.active {
    color: var(--accent-light);
}

/*--------------------------------------------------------------
# Features Cards
--------------------------------------------------------------*/
.card {
    background-color: var(--secondary-dark);
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

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

.card-body {
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(200, 162, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--accent-light);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.feature-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-light);
}

/*--------------------------------------------------------------
# Check List
--------------------------------------------------------------*/
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-light);
}

/*--------------------------------------------------------------
# Product Categories
--------------------------------------------------------------*/
.product-category {
    margin-bottom: 1.5rem;
}

.product-category h4 {
    font-size: 1.15rem;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.product-category p {
    margin-bottom: 0;
}

.product-category i {
    margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-form-wrapper {
    background-color: var(--secondary-dark);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    transition: all var(--transition-medium);
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-light);
    box-shadow: 0 0 0 0.25rem rgba(200, 162, 125, 0.25);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: rgba(189, 189, 189, 0.5);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C8A27D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
}

.form-check-input:checked {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
}

.form-check-input:focus {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 0.25rem rgba(200, 162, 125, 0.25);
}


.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 5;
}

.iti__selected-flag {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.iti__country-list {
    background-color: var(--secondary-dark) !important;
    border: 1px solid var(--border) !important;
}

.iti__country {
    color: var(--text-primary) !important;
}

.iti__country.iti__highlight {
    background-color: rgba(200, 162, 125, 0.2) !important;
}

/*--------------------------------------------------------------
# Contact Cards
--------------------------------------------------------------*/
.contact-card {
    background-color: var(--secondary-dark);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-medium);
}

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

.contact-card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(200, 162, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--accent-light);
}

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

.hours-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.contact-list li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-list li i {
    color: var(--accent-light);
    margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# Map Container
--------------------------------------------------------------*/
.map-container {
    overflow: hidden;
    position: relative;
    height: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*--------------------------------------------------------------
# Directions
--------------------------------------------------------------*/
.direction-item {
    display: flex;
    margin-bottom: 2rem;
}

.direction-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(200, 162, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.direction-icon i {
    font-size: 1.5rem;
    color: var(--accent-light);
}

.direction-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.direction-content ol {
    padding-left: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.direction-content ol li {
    margin-bottom: 0.5rem;
}

.notice-box {
    background-color: rgba(200, 162, 125, 0.1);
    border-left: 4px solid var(--accent-light);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

.notice-box h5 {
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.notice-box i {
    margin-right: 0.5rem;
}

.notice-box p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Transport Options
--------------------------------------------------------------*/
.transport-option {
    margin-bottom: 1.5rem;
}

.transport-option h4 {
    font-size: 1.2rem;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
}

.transport-option i {
    margin-right: 0.5rem;
}

.transport-option p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Quality Features
--------------------------------------------------------------*/
.quality-feature {
    margin-bottom: 2rem;
}

.quality-feature h4 {
    font-size: 1.2rem;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
}

.quality-feature i {
    margin-right: 0.5rem;
}

.quality-feature p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(200, 162, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--accent-light);
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# CTA Box
--------------------------------------------------------------*/
.cta-box {
    background-color: rgba(200, 162, 125, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(200, 162, 125, 0.2);
}

.cta-box h3 {
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.cta-box p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Thank You Section
--------------------------------------------------------------*/
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    background-color: var(--secondary-dark);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-icon i {
    font-size: 3rem;
    color: var(--success);
}

.opening-hours p {
    margin-bottom: 0.5rem;
}

.opening-hours p:last-child {
    margin-bottom: 0;
}

.opening-hours i {
    color: var(--accent-light);
    margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# FAQ Accordion
--------------------------------------------------------------*/
.accordion-item {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: var(--secondary-dark);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(200, 162, 125, 0.1);
    color: var(--accent-light);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8A27D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    border-top: 1px solid var(--border);
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body ul {
    color: var(--text-secondary);
}

/*--------------------------------------------------------------
# Legal Content
--------------------------------------------------------------*/
.legal-content {
    background-color: var(--secondary-dark);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.legal-updated {
    text-align: right;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-style: italic;
}

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

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--accent-light);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

.legal-section h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul, .legal-section ol {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.cookie-table {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cookie-table th {
    background-color: rgba(200, 162, 125, 0.1);
    color: var(--text-primary);
    border-color: var(--border);
}

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

/*--------------------------------------------------------------
# Cookie Consent
--------------------------------------------------------------*/
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
}

.cookie-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.cookie-content p {
    margin-bottom: 1.25rem;
}

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

.cookie-preferences {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-category {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cookie-category:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cookie-category p {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-section {
    background-color: var(--secondary-dark);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 60px;
}

.footer-links, .footer-info, .footer-legal {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li, .footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a, .footer-legal a {
    color: var(--text-secondary);
    transition: color var(--transition-medium);
}

.footer-links a:hover, .footer-links a:focus,
.footer-legal a:hover, .footer-legal a:focus {
    color: var(--accent-light);
}

.footer-info li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.footer-info li i {
    color: var(--accent-light);
    width: 20px;
    margin-right: 0.5rem;
}

.footer-section h5 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-light);
}

hr {
    border-color: var(--border);
    opacity: 0.1;
    margin: 2rem 0;
}

.footer-bottom {
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
}

.footer-legal li:not(:last-child) {
    margin-right: 1.5rem;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: var(--section-padding-sm);
    }
    
    .footer-section h5 {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .contact-form-wrapper, .legal-content {
        padding: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        text-align: center !important;
    }
    
    .direction-item {
        flex-direction: column;
    }
    
    .direction-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        text-align: center;
    }
    
    .hero-image {
        height: 70vh;
        min-height: 500px;
    }
    
    .thank-you-content {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-icon {
        width: 80px;
        height: 80px;
    }
    
    .thank-you-icon i {
        font-size: 2.5rem;
    }
}