    :root {
      --bg: rgb(61,62,59);
      --accent: #f5f5f5;
      --highlight: #4CAF50;
      --card-bg: rgba(255,255,255,0.04);
      font-family: "Geologica", sans-serif;
    }
    
    body {
      min-height: 100vh;
      background: var(--bg);
      color: var(--accent);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    
    .card {
      width: 100%;
      max-width: 1400px;
      background: var(--card-bg);
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 6px 30px rgba(0,0,0,0.45);
      backdrop-filter: blur(6px);
      animation: fadeIn 0.5s ease-in-out;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.05);
        opacity: 0.8;
      }
    }
    
    header {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }
    
    .logo {
      width: 500px;
      height: auto;
      display: block;
      object-fit: contain;
    }
    
    .hero {
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .hero h1 {
      margin-bottom: 0.5rem;
    }
    
    .hero h2 {
      font-size: 1.3rem;
      font-weight: 400;
      color: rgba(245,245,245,0.9);
      margin-bottom: 1.5rem;
      font-family: "Geologica", sans-serif;
    }
    
    .cta-button {
      display: inline-block;
      background: var(--highlight);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(76,175,80,0.3);
    }
    
    .cta-button:hover {
      background: #45a049;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(76,175,80,0.4);
      color: white;
    }
    
    .about {
      margin-top: 2rem;
      line-height: 1.6;
      color: rgba(245,245,245,0.95);
    }
    
    .about h2 {
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }
    
    .about p {
      text-align: justify;
    }
    
    .trust-badge {
      text-align: center;
      font-style: italic;
      color: var(--highlight);
      margin-top: 1rem;
      font-weight: 500;
    }
    
    .products {
      margin-top: 2.5rem;
    }
    
    .products h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 1.8rem;
    }
    
    .product-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .category-card {
      background: rgba(255,255,255,0.06);
      border-radius: 10px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      border: 1px solid rgba(255,255,255,0.1);
    }
    
    .category-card:hover {
      background: rgba(255,255,255,0.09);
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    
    .category-card i {
      font-size: 2.5rem;
      color: var(--highlight);
      margin-bottom: 1rem;
    }
    
    .category-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }
    
    .featured-product {
      background: linear-gradient(135deg, rgba(76,175,80,0.15), rgba(76,175,80,0.05));
      border: 2px solid rgba(76,175,80,0.3);
      border-radius: 12px;
      padding: 2rem;
      margin-top: 2rem;
      position: relative;
      overflow: hidden;
    }
    
    .new-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #FF5722;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.9rem;
      animation: pulse 2s infinite;
      box-shadow: 0 4px 15px rgba(255,87,34,0.4);
    }
    
    .featured-product h3 {
      color: var(--highlight);
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }
    
    .featured-product ul {
      margin: 1rem 0;
      padding-left: 0 !important;
      list-style-type: none !important;
    }
    
    .featured-product li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }
    
    .featured-product .availability {
      color: var(--highlight);
      font-weight: 600;
      margin-top: 1rem;
      font-size: 1.1rem;
    }
    
    .contact {
      margin-top: 2.5rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    
    .contact h2 {
      text-align: center;
      grid-column: 1 / -1;
      margin-bottom: 1rem;
      font-size: 1.8rem;
    }
    
    .contact .col {
      background: rgba(255,255,255,0.04);
      padding: 1.5rem;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.08);
    }
    
    .contact .col h3 {
      margin-bottom: 1rem;
      color: var(--highlight);
      font-size: 1.2rem;
    }
    
    .contact .col p {
      margin-bottom: 0.5rem;
      text-align: left;
    }
    
    .contact .col p i {
      margin-right: 0.5rem;
      color: var(--highlight);
    }
    
    .contact .col a {
      color: var(--accent);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .contact .col a:hover {
      color: var(--highlight);
    }
    
    .map-container {
      margin-top: 2rem;
      border-radius: 10px;
      overflow: hidden;
      height: 300px;
      border: 2px solid rgba(255,255,255,0.1);
    }
    
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
    
    .viber-button {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #7360f2;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 4px 20px rgba(115,96,242,0.4);
      transition: all 0.3s ease;
      z-index: 1000;
      text-decoration: none;
    }
    
    .viber-button:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(115,96,242,0.6);
      color: white;
    }
    
    footer {
      margin-top: 2.5rem;
      text-align: center;
      font-size: 0.9rem;
      color: rgba(245,245,245,0.7);
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    footer .social-links a {
      color: var(--accent);
      font-size: 1.8rem;
      transition: all 0.3s;
      display: inline-block;
    }
    
    footer .social-links a:hover {
      color: #1877f2;
      transform: scale(1.2);
    }

    p {
      text-align: center;
    }
    
    p, ul {
      color: var(--accent);
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: "Geologica", sans-serif;
      color: var(--accent);
    }
    
    @media (max-width: 768px) {
      .contact {
        grid-template-columns: 1fr;
      }
      .logo {
        width: 250px;
      }
      
      .card {
        padding: 1.5rem;
      }
      
      .product-categories {
        grid-template-columns: 1fr;
      }
      
      .new-badge {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
      }
      
      .viber-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
      }
    }
    
    @media (max-width: 540px) {
      .logo {
        width: 200px;
      }
      
      .card {
        padding: 1rem;
      }
      
      .hero h1 {
        font-size: 1.5rem;
      }
      
      .hero h2 {
        font-size: 1rem;
      }
    }