/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #A73827;
    --secondary-color: #E99F8B;
    --light-color: #DAC8BA;
    --bg-color: #E5DDD5;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow-light: rgba(255, 255, 255, 0.8);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Neomorphism Button Style */
.btn-primary {
    background: var(--bg-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 
        inset 4px 4px 8px var(--shadow-dark),
        inset -4px -4px 8px var(--shadow-light);
    transform: scale(0.98);
}

.btn-primary:active {
    box-shadow: 
        inset 6px 6px 12px var(--shadow-dark),
        inset -6px -6px 12px var(--shadow-light);
}

/* Header */
.header {
    background: var(--bg-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    width: 50px;
    height: 50px;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary-color);
    box-shadow: 
        inset 3px 3px 6px var(--shadow-dark),
        inset -3px -3px 6px var(--shadow-light);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--bg-color);
    border: none;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 
        5px 5px 10px var(--shadow-dark),
        -5px -5px 10px var(--shadow-light);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--bg-color);
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 12px;
    box-shadow: 
        4px 4px 8px var(--shadow-dark),
        -4px -4px 8px var(--shadow-light);
    transition: all 0.3s ease;
}

.mobile-menu a:active {
    box-shadow: 
        inset 3px 3px 6px var(--shadow-dark),
        inset -3px -3px 6px var(--shadow-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 30px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(229, 221, 213, 0.95);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.3),
        -12px -12px 24px rgba(255, 255, 255, 0.5);
}

.hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.hero-content .btn-primary {
    margin-top: 30px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        10px 10px 20px var(--shadow-dark),
        -10px -10px 20px var(--shadow-light);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background: #999;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 24px var(--shadow-dark),
        -12px -12px 24px var(--shadow-light);
}

.product-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 
        inset 4px 4px 8px var(--shadow-dark),
        inset -4px -4px 8px var(--shadow-light);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: #999;
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Materials Info */
.materials-info {
    margin-top: 60px;
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.materials-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.materials-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.materials-list .icon {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}

/* Consultation Section */
.consultation {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--bg-color) 100%);
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.consultation-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: var(--bg-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 
        6px 6px 12px var(--shadow-dark),
        -6px -6px 12px var(--shadow-light);
}

.feature-icon {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

.consultation-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        10px 10px 20px var(--shadow-dark),
        -10px -10px 20px var(--shadow-light);
}

.consultation-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #999;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.stars {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--bg-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        6px 6px 12px var(--shadow-dark),
        -6px -6px 12px var(--shadow-light);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--bg-color);
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Categories Section */
.category-tree {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-branch {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.category-branch h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.category-branch ul {
    list-style: none;
}

.category-branch li {
    margin-bottom: 12px;
}

.category-branch a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
}

.category-branch a:hover {
    color: var(--primary-color);
    background: rgba(167, 56, 39, 0.1);
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Contact Page Specific */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
    text-align: center;
}

.info-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        10px 10px 20px var(--shadow-dark),
        -10px -10px 20px var(--shadow-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: var(--bg-color);
    box-shadow: 
        inset 4px 4px 8px var(--shadow-dark),
        inset -4px -4px 8px var(--shadow-light);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 
        inset 6px 6px 12px var(--shadow-dark),
        inset -6px -6px 12px var(--shadow-light);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        10px 10px 20px var(--shadow-dark),
        -10px -10px 20px var(--shadow-light);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .about-content,
    .consultation-content {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .materials-list {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 28px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .consultation-image img,
    .about-image img {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .review-card,
    .category-branch {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
}

/* Legal Pages Styles */
.page-header {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--bg-color) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 42px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    background: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 20px;
    text-align: left;
}

.legal-section h3 {
    color: var(--text-dark);
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    color: var(--text-light);
    line-height: 1.8;
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--secondary-color);
}

/* Success Page Styles */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.success-content {
    text-align: center;
    background: var(--bg-color);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 
        12px 12px 24px var(--shadow-dark),
        -12px -12px 24px var(--shadow-light);
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.success-content h1 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.success-message {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.success-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.success-info {
    background: rgba(167, 56, 39, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.success-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.success-info ul {
    list-style: none;
    margin-left: 0;
}

.success-info li {
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 5px;
}

.success-actions {
    margin: 30px 0;
}

.contact-reminder {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--light-color);
}

.contact-reminder p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-reminder strong {
    color: var(--text-dark);
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 60px 0;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-box {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.form-section {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--bg-color) 100%);
    padding: 80px 0;
}

.map-section {
    padding: 80px 0;
}

.additional-info {
    background: var(--light-color);
    padding: 60px 0;
}

/* Mirror Page Specific Styles */
.production-process {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-color), var(--light-color));
}

.process-steps {
    margin-top: 50px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        10px 10px 20px var(--shadow-dark),
        -10px -10px 20px var(--shadow-light);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.3),
        -4px -4px 8px rgba(255, 255, 255, 0.5);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-image {
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 
        inset 4px 4px 8px var(--shadow-dark),
        inset -4px -4px 8px var(--shadow-light);
}

.step-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #999;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.step-content ul {
    list-style: none;
    margin-top: 15px;
}

.step-content ul li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.mirror-collection,
.mirror-types,
.why-choose {
    padding: 80px 0;
}

.types-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.type-card,
.benefit-item {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.type-card h3,
.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.type-card p,
.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .process-step {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .step-image img {
        height: 250px;
    }
    
    .types-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .success-content {
        padding: 40px 25px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .success-content h1 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary {
        width: 100%;
        max-width: 300px;
        margin-left: 0 !important;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.cookie-banner.show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    text-decoration: none;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: white;
    color: var(--primary-color);
}

.cookie-btn-accept:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}