


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

body {
    font-family: 'Nunito', sans-serif;
    color: #2C3E50;
    background-color: #F9F7F2;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #3498DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980B9;
}

.ui.container {
    padding: 2rem 1rem;
}


.paper-layer {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05), 
                0 10px 20px rgba(0,0,0,0.03),
                0 0 0 1px rgba(0,0,0,0.02);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paper-layer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.03);
    z-index: -1;
}

.paper-layer:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08), 
                0 15px 25px rgba(0,0,0,0.05),
                0 0 0 1px rgba(0,0,0,0.02);
}


.ui.button {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ui.primary.button {
    background-color: #E74C3C;
    color: white;
}

.ui.primary.button:hover {
    background-color: #C0392B;
}

.ui.basic.button {
    box-shadow: 0 0 0 1px #3498DB inset;
    color: #3498DB;
}

.ui.basic.button:hover {
    background-color: rgba(52, 152, 219, 0.05) !important;
    color: #2980B9;
    box-shadow: 0 0 0 1px #2980B9 inset;
}


.header-container {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0;
}

.header-container .ui.container {
    padding: 1rem;
}

.logo img {
    height: 40px;
}

.right.menu .item {
    font-weight: 600;
    color: #2C3E50;
    transition: color 0.3s ease;
}

.right.menu .item:hover, 
.right.menu .active.item {
    color: #E74C3C;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
}

.mobile-menu-toggle .icon {
    font-size: 1.5rem;
    color: #2C3E50;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
}

.close-menu {
    text-align: right;
    margin-bottom: 2rem;
}

.close-menu .icon {
    font-size: 1.5rem;
    color: #2C3E50;
    cursor: pointer;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-content .item {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C3E50;
    padding: 0.5rem 0;
    border-bottom: 1px solid #EFEFEF;
}

.mobile-menu-content .active.item {
    color: #E74C3C;
}


.hero-section {
    padding: 2rem 0 4rem 0;
}

.hero-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3498DB;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.features-section {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #7F8C8D;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-icon {
    font-size: 3rem;
    color: #E74C3C;
    margin-bottom: 1.5rem;
}

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

.feature-card p {
    color: #7F8C8D;
}


.stats-section {
    padding: 4rem 0;
    background-color: #F2F7F9;
}

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

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

.stat-label {
    font-size: 1.2rem;
    color: #2C3E50;
    font-weight: 600;
}


.product-highlights {
    padding: 4rem 0;
}

.masonry-grid {
    margin: 0 -15px;
}

.product-card {
    margin-bottom: 2rem;
    overflow: hidden;
    height: 100%;
}

.product-image {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

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

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.product-content p {
    color: #7F8C8D;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E74C3C;
    margin-bottom: 1rem;
}

.view-all-products {
    text-align: center;
    margin-top: 2rem;
}


.technology-section {
    padding: 4rem 0;
    background-color: #F2F7F9;
}

.technology-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.technology-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.technology-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.technology-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.technology-features {
    list-style: none;
    margin-bottom: 2rem;
}

.technology-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.technology-features li i {
    color: #27AE60;
    margin-right: 0.75rem;
}


.contact-form-section {
    padding: 4rem 0;
}

.contact-content {
    padding: 2rem;
    height: 100%;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-content p {
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #3498DB;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-form {
    padding: 2rem;
}

.contact-form .field {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3498DB;
    outline: none;
}

#cookie-settings-button {
  color: #F9F7F2 !important;
}

.quantity-input {
  width: 70px !important;
  font-size: 14px;
  color: #333;
}


.footer-container {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 0;
}

footer a {
  color: #F9F7F2 !important;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #BDC3C7;
}

.footer-container h4 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.ui.link.list .item {
    color: #BDC3C7;
    padding: 0.5rem 0;
}

.ui.link.list .item:hover {
    color: #FFFFFF;
}

.ui.link.list .item i {
    margin-right: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #BDC3C7;
}


.page-header {
    padding: 2rem 0;
}

.page-header-content {
    text-align: center;
    padding: 3rem 2rem;
}

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

.page-header-content p {
    font-size: 1.2rem;
    color: #7F8C8D;
}


.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1.5rem;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 1rem;
}

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

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-category {
    margin: 1.5rem 0;
}

.modal-buttons {
    margin-top: 2rem;
}


.product-detail-container {
    margin-top: 2rem;
}

.product-image-gallery {
    margin-bottom: 2rem;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #E74C3C;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-breadcrumb {
    margin-bottom: 1rem;
    color: #7F8C8D;
}

.product-breadcrumb a {
    color: #7F8C8D;
}

.product-breadcrumb a:hover {
    color: #3498DB;
}

.product-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-availability {
    margin-left: 1.5rem;
    color: #27AE60;
    display: flex;
    align-items: center;
}

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

.product-actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector label {
    margin-right: 1rem;
    font-weight: 600;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0;
    color: #333;
    font-size: 14px;
}

.product-additional-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #EFEFEF;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.info-item i {
    color: #3498DB;
    margin-right: 0.75rem;
}

.product-details-tabs {
    margin: 4rem 0;
}

.ui.tabular.menu .item {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.ui.tabular.menu .active.item {
    border-color: #3498DB;
    color: #3498DB;
}


.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-message i {
    font-size: 4rem;
    color: #BDC3C7;
    margin-bottom: 1.5rem;
}

.cart-table {
    margin-bottom: 2rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.order-summary {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 8px;
}

.order-summary h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #EFEFEF;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #EFEFEF;
}


.checkout-process {
    margin-bottom: 2rem;
}

.checkout-form {
    margin-bottom: 2rem;
}

.checkout-form h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #EFEFEF;
}

.checkout-form h3 {
    margin: 2rem 0 1rem 0;
}

.checkout-form .field {
    margin-bottom: 1.5rem;
}

.checkout-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
    border-color: #3498DB;
    outline: none;
}

.checkout-note {
    background-color: #F9FAFB;
    padding: 1rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #EFEFEF;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.item-price {
    color: #7F8C8D;
    font-size: 0.9rem;
}

.security-message {
    background-color: #EBF5FB;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
}

.security-message i {
    color: #3498DB;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.security-message p {
    margin: 0;
    font-size: 0.9rem;
}


.thank-you-container {
    text-align: center;
    padding: 3rem 2rem;
}

.thank-you-icon {
    font-size: 5rem;
    color: #27AE60;
    margin-bottom: 2rem;
}

.thank-you-container h1 {
    margin-bottom: 1.5rem;
}

.thank-you-container p {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
}

.order-confirmation,
.delivery-information,
.payment-details,
.customer-support {
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.customer-support ul {
    list-style: none;
    margin: 1rem 0;
}

.customer-support ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.customer-support ul li i {
    margin-right: 0.75rem;
    color: #3498DB;
}

.next-steps {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.next-step-card {
    padding: 1.5rem;
    text-align: center;
    background-color: #F9FAFB;
    border-radius: 8px;
    height: 100%;
}

.next-step-card i {
    font-size: 2.5rem;
    color: #3498DB;
    margin-bottom: 1rem;
}

.next-step-card h4 {
    margin-bottom: 0.75rem;
}

.next-step-card p {
    margin-bottom: 1.5rem;
}

.return-home {
    margin-top: 3rem;
}


.policy-container,
.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.policy-introduction,
.terms-introduction {
    margin-bottom: 3rem;
}

.policy-section,
.terms-section {
    margin-bottom: 3rem;
}

.policy-section h2,
.terms-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #EFEFEF;
}

.policy-section h3,
.terms-section h3 {
    margin: 1.5rem 0 1rem 0;
}

.policy-section ul,
.terms-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.policy-section ul li,
.terms-section ul li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background-color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.cookies-table-container {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-settings-cta {
    background-color: #F9FAFB;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 3rem;
}


.compliance-intro,
.compliance-content,
.standards-content,
.ethics-content,
.commitment-content {
    margin-bottom: 3rem;
}

.compliance-image {
    margin-bottom: 2rem;
}

.compliance-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.certification-item,
.standard-item,
.compliance-item {
    margin-bottom: 2rem;
}

.certification-item h3,
.standard-item h3,
.compliance-item h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.certification-item h3 i,
.standard-item h3 i,
.compliance-item h3 i {
    margin-right: 0.75rem;
    color: #3498DB;
}

.ethics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ethics-item {
    text-align: center;
}

.ethics-icon {
    font-size: 2.5rem;
    color: #3498DB;
    margin-bottom: 1rem;
}


.protocols-overview,
.encryption-protocols,
.security-visualization,
.security-benefits {
    margin-bottom: 4rem;
}

.protocols-image img,
.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.protocols-cards {
    margin-top: 2rem;
}

.protocol-card {
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.protocol-icon {
    font-size: 2.5rem;
    color: #3498DB;
    margin-bottom: 1.5rem;
}

.chart-container {
    padding: 2rem;
    margin-bottom: 2rem;
    height: 400px;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.benefit-item h3 i {
    margin-right: 0.75rem;
    color: #3498DB;
}


.faq-section {
    margin-bottom: 4rem;
}

.faq-container {
    padding: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #EFEFEF;
}

.faq-question {
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1.5rem 0;
    display: none;
}

.faq-answer.active {
    display: block;
}


.products-section {
    margin-bottom: 4rem;
}

.tech-specs-section {
    margin-bottom: 4rem;
}

.tech-specs-table {
    padding: 0;
    overflow-x: auto;
}

.table-wrapper {
    padding: 2rem;
}

.advantages-section {
    margin-bottom: 4rem;
}

.advantages-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-section {
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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


.warranty-overview,
.support-services,
.warranty-process,
.service-centers {
    margin-bottom: 4rem;
}

.warranty-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: #3498DB;
    margin-bottom: 1.5rem;
}

.service-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #7F8C8D;
}

.process-steps {
    padding: 2rem;
}

.service-centers-map {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.service-centers-map iframe {
    display: block;
}


.contact-info-section,
.map-section,
.support-options {
    margin-bottom: 4rem;
}

.contact-details {
    padding: 2rem;
}

.contact-method {
    margin-bottom: 2rem;
    display: flex;
}

.contact-icon {
    font-size: 2rem;
    color: #3498DB;
    margin-right: 1.5rem;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.map-container {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
}

.map-container iframe {
    display: block;
}

.support-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.support-icon {
    font-size: 2.5rem;
    color: #3498DB;
    margin-bottom: 1.5rem;
}


.iti {
    width: 100%;
}


@media (max-width: 768px) {
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .technology-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-method {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quantity-selector {
        margin-bottom: 1rem;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .ethics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ui.container {
        padding: 1.5rem 1rem;
    }
    
    .paper-layer {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .ui.button {
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .ui.button {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}