@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #c9a96e;
    --primary-dark: #a8884d;
    --secondary: #2d3436;
    --accent: #e8dfd0;
    --bg-light: #faf8f5;
    --bg-cream: #f5f0e8;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1d1e 100%);
    position: relative;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-contact {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.header-contact a {
    color: rgba(255,255,255,0.7);
}

.header-contact a:hover {
    color: var(--primary);
}

.header-contact i {
    margin-right: 5px;
    color: var(--primary);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.logo-text span {
    color: var(--primary);
}

.nav-desktop {
    display: flex;
    gap: 25px;
}

.nav-desktop a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 0;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--white);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.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(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--secondary);
    padding: 80px 30px 30px;
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

main {
    flex: 1;
}

.hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--accent) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.hero-text h1 span {
    color: var(--primary-dark);
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-badge i {
    color: var(--primary);
    margin-right: 8px;
}

.section {
    padding: 50px 0;
}

.section-alt {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--accent);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.3rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--accent);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    color: var(--primary);
    font-size: 3rem;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-content {
    padding: 18px;
}

.product-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.product-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-dark);
}

.product-link:hover {
    color: var(--primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.about-list {
    list-style: none;
    margin-top: 20px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.about-list i {
    color: var(--primary);
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--accent);
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1d1e 100%);
    padding: 50px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.contact-section {
    padding: 50px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1d1e 100%);
    padding: 35px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.contact-item-text p,
.contact-item-text a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.contact-item-text a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
}

.map-container {
    height: 250px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 25px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--accent) 100%);
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary-dark);
}

.breadcrumb span {
    color: var(--text-muted);
}

.page-content {
    padding: 50px 0;
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 25px 0 12px;
    color: var(--secondary);
}

.page-content h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--secondary);
}

.page-content p {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.page-content ul,
.page-content ol {
    margin: 12px 0;
    padding-left: 25px;
}

.page-content li {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.policy-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
    text-align: center;
}

.policy-meta {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent);
}

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.error-content h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.error-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.thankyou-content h1 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.thankyou-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
    padding: 25px 0 15px;
    font-size: 0.8rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-logo span {
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--secondary);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    flex: 1;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--transition);
}

.btn-cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-cookie-decline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.wedding-hero {
    background: linear-gradient(135deg, #fdf6f0 0%, #f8ece0 100%);
    padding: 60px 0;
}

.wedding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.wedding-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.wedding-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.wedding-card-content {
    padding: 25px;
}

.wedding-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.wedding-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-number {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.process-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--secondary);
}

.process-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--accent);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    font-size: 1.8rem;
}

.team-card h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 0.8rem;
    color: var(--primary-dark);
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--accent);
}

.value-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.value-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--accent);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .features-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section {
        padding: 40px 0;
    }

    .features-grid,
    .products-grid,
    .wedding-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .header-contact {
        display: none;
    }

    .contact-info {
        padding: 25px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }

    .container {
        padding: 0 12px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        position: static;
        margin-top: 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 11px;
    }

    .header-main {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}
