* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
:root {
    --primary: #005eff;
    --secondary: #ffd966;
    --accent: #eaf3ff;
    --text-dark: #333;
    --text-light: #777;
}
body {
    background-color: #f5f5f5;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 80px;
}

.logo span {
    font-size: 1rem;
    font-weight: 800;
    color: #1a73e8;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--accent);
    border-radius: 8px;
    padding: 0.5rem;
    width: 40%;
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    padding: 0.5rem;
}

.search-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #1a73e8;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
}

.container {
    display: flex;
    min-height: calc(100vh - 70px);
}

.sidebar {
    width: 250px;
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    border-right: 1px solid #e9ecef;
}

.sidebar h3 {
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav ul li {
    margin-bottom: 0.5rem;
}

.sidebar nav ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #495057;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar nav ul li a:hover,
.sidebar nav ul li a.active {
    background-color: #e8f0fe;
    color: #1a73e8;
}

.content {
    flex: 1;
    padding: 2rem;
}

h1 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subheading {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #434445;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    background-color: white;
}

.form-group small {
    display: block;
    color: #666;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.submit-btn {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1557b0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card .fa-whatsapp { color: #25D366; }
.card .fa-instagram { color: #E4405F; }
.card .fa-youtube { color: #FF0000; }

.card h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.card span {
    color: #1a73e8;
    font-weight: 500;
}
    .footer {
    background: #000000;
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }
  
  .footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .footer h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .footer ul {
    list-style: none;
  }
  
  .footer ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: var(--secondary);
  }
  

