/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000000;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.8);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== LAYOUT CONTAINERS ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content-wrapper-unique {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text-minimal {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.cookie-actions-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept-cookies {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-accept-cookies:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.btn-learn-more {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 300;
}

.btn-learn-more:hover {
    color: #ffffff;
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navigation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand-section {
    z-index: 1001;
}

.brand-logo-link {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text-primary {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.02em;
}

.brand-text-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: -0.2rem;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu-list a {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000000;
    transition: width 0.3s ease;
}

.nav-menu-list a:hover {
    color: #000000;
}

.nav-menu-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.hamburger-line {
    width: 1.5rem;
    height: 1px;
    background: #000000;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 248, 248, 1) 100%);
    overflow: hidden;
}

.hero-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-wrapper {
    z-index: 2;
}

.hero-title-primary {
    margin-bottom: 2rem;
    line-height: 0.9;
}

.title-line-one,
.title-line-two,
.title-line-three {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line-one {
    animation-delay: 0.2s;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
}

.title-line-two {
    animation-delay: 0.4s;
    font-weight: 500;
    color: #000000;
    font-size: 1.2em;
}

.title-line-three {
    animation-delay: 0.6s;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.8);
}

.hero-description-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 90%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-cta-container {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1s forwards;
}

.btn-primary-hero {
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: 1px solid #000000;
}

.btn-primary-hero:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary-hero {
    background: transparent;
    color: #000000;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #000000;
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.6s ease;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 8rem 0;
    background: #ffffff;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-title-about {
    margin-bottom: 2rem;
    color: #000000;
}

.about-description-primary {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(0, 0, 0, 0.8);
}

.about-description-secondary {
    margin-bottom: 3rem;
    color: rgba(0, 0, 0, 0.7);
}

.about-stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item-unique {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
}

.about-image-column {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 8rem 0;
    background: rgba(248, 248, 248, 0.5);
}

.section-title-products {
    text-align: center;
    margin-bottom: 1rem;
    color: #000000;
}

.section-subtitle-products {
    text-align: center;
    margin-bottom: 4rem;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    font-weight: 300;
}

.products-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-card-unique {
    background: #ffffff;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.product-card-unique:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.4s ease;
}

.product-card-unique:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card-unique:hover .product-overlay {
    opacity: 1;
}

.btn-view-details {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.product-info-section {
    padding: 2rem;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #000000;
}

.product-description {
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages-section {
    padding: 8rem 0;
    background: #ffffff;
}

.section-title-advantages {
    text-align: center;
    margin-bottom: 4rem;
    color: #000000;
}

.advantages-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.advantage-item-unique {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.advantage-item-unique:hover {
    transform: translateY(-5px);
}

.advantage-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.advantage-item-unique:hover .advantage-icon-wrapper {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    color: #000000;
}

.advantage-title {
    margin-bottom: 1rem;
    color: #000000;
}

.advantage-description {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 8rem 0;
    background: rgba(248, 248, 248, 0.5);
}

.section-title-testimonials {
    text-align: center;
    margin-bottom: 4rem;
    color: #000000;
}

.testimonials-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card-unique {
    background: #ffffff;
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card-unique:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    font-style: italic;
    margin: 0;
}

.testimonial-text::before {
    content: '"';
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.author-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #000000;
}

.author-title {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 300;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 8rem 0;
    background: #ffffff;
}

.section-title-faq {
    text-align: center;
    margin-bottom: 4rem;
    color: #000000;
}

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

.faq-item-unique {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-btn:hover {
    color: rgba(0, 0, 0, 0.7);
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    flex: 1;
    text-align: left;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

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

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

.faq-answer-content[aria-hidden="false"] {
    max-height: 200px;
    padding: 0 0 2rem 0;
}

.faq-answer-content p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 8rem 0;
    background: rgba(248, 248, 248, 0.5);
}

.section-title-contact {
    text-align: center;
    margin-bottom: 1rem;
    color: #000000;
}

.section-subtitle-contact {
    text-align: center;
    margin-bottom: 4rem;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    font-weight: 300;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-item {
    margin-bottom: 3rem;
}

.contact-info-title {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 1.25rem;
}

.contact-info-text {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group-wrapper {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #000000;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: #000000;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: block;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-error.show {
    opacity: 1;
}

.btn-submit-form {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit-form:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.form-success-message {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-success-message.show {
    opacity: 1;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-brand-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-section-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 400;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

.footer-back-link {
    margin-top: 1rem;
}

/* ===== PRIVACY POLICY STYLES ===== */
.privacy-policy-main {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

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

.privacy-header-section {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-title-main {
    margin-bottom: 1rem;
    color: #000000;
}

.privacy-last-updated {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.privacy-section-block {
    margin-bottom: 3rem;
}

.privacy-section-title {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.5rem;
}

.privacy-subsection-title {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 1.25rem;
}

.privacy-text-content {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.privacy-list-items {
    list-style: none;
    margin-bottom: 1.5rem;
}

.privacy-list-items li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.privacy-list-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.4);
}

.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type-item {
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(248, 248, 248, 0.5);
}

.cookie-type-title {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 1rem;
}

.cookie-type-description {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.privacy-contact-info {
    background: rgba(248, 248, 248, 0.5);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.privacy-contact-info p {
    margin-bottom: 0.75rem;
    color: rgba(0, 0, 0, 0.8);
}

.privacy-contact-info p:last-child {
    margin-bottom: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .cookie-content-wrapper-unique {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-actions-container {
        justify-content: center;
    }

    .nav-menu-wrapper {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 6rem 2rem 4rem;
    }

    .hero-image-wrapper {
        order: -1;
        height: 400px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .advantages-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cookie-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-container {
        padding: 0 1rem;
    }

    .navigation-container {
        padding: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content-container {
        padding: 5rem 1rem 3rem;
    }

    .hero-cta-container {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .privacy-content-wrapper {
        padding: 0 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    animation: fadeInUp 0.8s ease forwards;
} 