.footer-content {
        gap: 2rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
    }
    /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    visibility: hidden;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 20px;
    text-align: center;
    border: 3px solid #FF6B35;
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cookie-content h3 {
    color: #FF6B35;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cookie-content p {
    margin-bottom: 30px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #e55a2b;
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 2px solid #ddd;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e8e8e8;
    border-color: #ccc;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    color: #111;
font-family: Unbounded;
font-size: 24px;
font-style: normal;
font-weight: 800;
line-height: normal;
text-transform: uppercase;
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
}

.logo img {
    width: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
   
}

.hero-content {
    display: flex;
   justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    min-height: 60vh;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  
}

.hero-center {
    flex: 1.5;
    text-align: center;
    max-width: 357px;
    width: 100%;
}

.hero-right {
    flex: 1;
    align-self: flex-end;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.3;
    margin-bottom: auto;
    font-weight: 400;
}

.catalog-button {
    margin-top: 4rem;
}

.catalog-button a {
    background: #FF6B35;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.catalog-button a:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hero-center img {
    max-width: 100%;
    height: auto;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-description {
    font-size: 14px;
    color: #111;
    line-height: 1.4;
    font-weight: 400;
}

.hero-brand {
    text-align: center;
    margin-top: 2rem;
}

.brand-name {
    font-size: 8rem;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 80px 0 100px;
    background: white;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FF6B35;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 40px;
    align-items: start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-text {
   
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    font-weight: 400;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    
}

.about-image img {
    width: 100%;
    height: auto;
 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-section {
    background: #333;
    padding: 50px 0;
    position: relative;
    
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    width: 80%;
}

.feature {
    color: white;
    text-align: left;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
}

.feature h3 {
    color: #FF6B35;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.feature-palm {
    right: 0;
    bottom: -40%;
    position: absolute;
    width: 22vw;
}

.feature-palm img {
    width: 100%;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.statistics-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.palm-leaves {
    flex: 1;
    max-width: 428px;
    width: 30vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    position: absolute;
    left: 0;
 
}

.palm-leaves:hover {
    transform: scale(1);
}

.palm-leaves img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.stats-grid {
    flex: 1;
    display: grid;
   grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
  max-width: 921px;
  width: 90%;
  margin-left: auto;
}

.stat-item {
    background: white;
    padding: 2rem;
    
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   border: 1px solid #111;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-item.large:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-item.large {
    grid-column: span 3 / span 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #333;
    color: white;
    border: 2px solid #333;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.stat-item.large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
    z-index: -1;
}

.stat-item:nth-of-type(2) {
    grid-column: span 2 / span 2;
    grid-column-start: 4;
}

.stat-item:nth-of-type(3) {
    grid-column: span 2 / span 2;
    grid-row-start: 2;
}

.stat-item:nth-of-type(4) {
    grid-column: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 2;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item.large .stat-number {
    color: #FF6B35;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

.stat-item.large .stat-label {
    color: #ccc;
    font-size: 1rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #333;
    color: white;
}

.products .section-title {
    color: #FF6B35;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    gap: 2rem;
    min-height: 408px;
    color: white;
    transition: transform 0.3s ease;
    
    
}

.product-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

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

.product-image {
   
    width: 100%;
    max-width: 272px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info h3 {
    color: #FF6B35;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-info p {
    font-size: 14px;
    line-height: 1.2;
    color: #ccc;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.btn-catalog {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-catalog:focus {
    outline: 3px solid #FF6B35;
    outline-offset: 3px;
    background: rgba(255, 107, 53, 0.1);
}

.btn-catalog:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-catalog:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(255, 107, 53, 0.3);
}

/* Contacts Section */
.contacts {
    padding: 170px 0 110px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 20px;
    border: 1px solid #111;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    font-weight: 500;
    color: #FF7B00;
    font-size: 14px;
}

.cont-palm {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 383px;
    width: 28vw;
}

.palm-1 {
    left: 0;
}

.palm-2 {
    right: 0;
}

/* Footer */
.footer {
    background: white;
    color: #333;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logo img {
    height: 40px;
    filter: none;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-contact p {
    font-size: 0.95rem;
    margin: 0;
    color: #FF6B35;
    font-weight: 500;
}

.footer-contact .address {
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FF6B35;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a img {
    width: 100%;
}

.footer-social a:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.footer-social a.twitter {
    background: #1DA1F2;
}

.footer-social a.twitter:hover {
    background: #0d8bd9;
}

.footer-social a.facebook {
    background: #1877F2;
}

.footer-social a.facebook:hover {
    background: #0e5bb8;
}

.social-icon {
    font-size: 1.1rem;
}

.footer-links a:focus,
.footer-social a:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

.footer-social a:active {
    transform: translateY(0);
}

/* Accessibility improvements */
.footer-contact .address {
    font-weight: 600;
}

.footer-contact .email,
.footer-contact .phone {
    font-weight: 500;
}

/* Hover effects for contact info */
.footer-contact p {
    transition: color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
}

.footer-contact p:hover {
    color: #e55a2b;
    transform: translateY(-1px);
    background: rgba(255, 107, 53, 0.05);
}

.footer-contact p:active {
    transform: translateY(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.85rem;
}

/* Large screens */
@media (min-width: 1400px) {
    .products-grid {
        max-width: 1400px;
        gap: 4rem;
    }
    
    .product-card {
        gap: 2.5rem;
    }
    
    .product-image {
        flex: 0 0 220px;
        width: 220px;
    }
    
    .product-image img {
        height: 220px;
    }
    
    .product-info h3 {
        font-size: 1.4rem;
    }
    
    .product-info p {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.6rem;
    }
    
    .footer-content {
        gap: 2.5rem;
    }
}

.card {
    padding: 140px 0 100px;
}

.card-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.card-image {
    width: 100%;
    max-width: 488px;
}

.card-image img {
    width: 100%;
}

.card-content {
    width: 100%;
    max-width: 682px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 14px;
}

.card-content ul {
    padding-left: 20px;
    flex: 0 1 100%;
}

.card-price {
    color: #FF7B00;
font-family: Unbounded;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

/* Responsive Design */
@media (max-width: 1023px) and (min-width: 769px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .brand-name {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0.5rem;
    }
    
    .about-image {
        padding-left: 0.5rem;
    }
    
    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .statistics-content {
        gap: 3rem;
    }
    
    .palm-leaves {
        max-width: 350px;
    }
    
    .stats-grid {
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .stat-item.large .stat-number {
        font-size: 3rem;
    }
    
    .products-grid {
        gap: 2.5rem;
    }
    
    .product-card {
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .product-image {
        flex: 0 0 180px;
        width: 180px;
    }
    
    .product-image img {
        height: 180px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .product-info p {
        font-size: 0.85rem;
    }
}


@media (max-width: 768px) {
.card-inner {
    flex-direction: column;
    align-items: center;
}

    .cookie-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .nav {
       
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .hero-left,
    .hero-center,
    .hero-right {
        flex: none;
    }

    .hero-right {
        flex: 0 1 100%;
    }
    
    .catalog-button {
        margin-top: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .brand-name {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }

    .about {
        padding-bottom: 0px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text,
    .about-image {
        padding: 0;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 100px;
    }

    .feature-palm {
        bottom: -10%;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .feature {
        text-align: center;
    }
    
    .statistics-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .palm-leaves {
        max-width: 300px;
        order: 2;
        transform: scale(1);
    }
    
    .palm-leaves:hover {
        transform: scale(1);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        order: 1;
       width: 80%;
        display: flex;
        flex-direction: column;
    }
    
    .stat-item.large {
        grid-row: span 1;
        padding: 2rem;
    }
    
    .stat-item.large .stat-number {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .products-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
        gap: 3rem;
    }
    
    .product-card {
        flex-direction: column;
       max-width: 450px;
        gap: 1.5rem;
        
       
    }
    
    .product-card:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .product-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .product-image img {
       
    }
    
    .product-card:hover .product-image img {
        transform: none;
    }
    
    .btn-catalog {
        align-self: center;
        padding: 15px 30px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-contact {
        gap: 0.75rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-social {
        gap: 1.5rem;
    }
}

@media (max-width: 530px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-content {
        gap: 1.5rem;
        flex-direction: column;
    }

    .hero-center {
        align-self: center;
        order: -1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .catalog-button a {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about,
    .features-section,
    .statistics,
    .products,
    .contacts {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .features {
        gap: 2.5rem;
        width: 100%;
    }

    .feature-palm {
        width: 36vw;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .statistics-content {
        gap: 2rem;
    }
    
    .palm-leaves {
        width: 95vw;
    }
    
    .stats-grid {
        gap: 1rem;
        max-width: 350px;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-item.large {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-item.large .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .products-grid {
        gap: 2.5rem;
    }
    
    .product-card {
        gap: 1.5rem;
    }
    
    .product-image img {
       
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-info p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .product-price {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .btn-catalog {
        padding: 12px 25px;
        font-size: 0.75rem;
    }
    .cont-palm {
        top: 30%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left,
.hero-center,
.hero-right,
.hero-brand {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-left {
    animation-delay: 0.2s;
}

.hero-center {
    animation-delay: 0.4s;
}

.hero-right {
    animation-delay: 0.6s;
}

.hero-brand {
    animation-delay: 0.8s;
}

/* Scroll behavior */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .product-card:hover .product-image img {
        transform: none;
    }
    
    .btn-catalog:hover {
        transform: none;
    }
    
    .footer-social a:hover {
        transform: none;
    }
    
    .footer-contact p:hover {
        color: #FF6B35;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature {
        border: 2px solid #ccc;
    }
    
    .product-card {
        border: 2px solid #FF6B35;
    }
    
    .stat-item {
        border: 2px solid #333;
    }
    
    .stat-item.large {
        border: 2px solid #FF6B35;
    }
    
    .btn-catalog {
        border-width: 3px;
    }
    
    .footer {
        border-top: 3px solid #333;
    }
    
    .footer-social a {
        border: 2px solid currentColor;
    }
    
    .footer-bottom {
        border-top: 2px solid #333;
    }
}

              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                