 * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
}
                    
body {
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          background-color: #f5f5f5;
          color: #333;
}
                    
header {
          background-color: #2c3e50;
          color: white;
          padding: 20px 0;
          box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
                    
.container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
}
                    
header .container {
          display: flex;
          justify-content: space-between;
          align-items: center;
}
                    
.logo h1 {
          font-size: 24px;
}
                    
nav a {
          color: white;
          text-decoration: none;
          margin-left: 20px;
          transition: 0.3s;
}
          
nav a:hover {
          color: #3498db;
}
                    
.hero{
          background-image: url('../image/bg.jpg');
          background-size: cover;          
          background-position: center;     
          background-repeat: no-repeat;    
          min-height: 40vh;               
          color: white;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          padding: 60px 20px;
          position: relative;
}

                    
.hero h2 {
          font-size: 36px;
          margin-bottom: 20px;
}
                    
.hero p {
          font-size: 18px;
          margin-bottom: 30px;
}
          
.btn {
          display: inline-block;
          background-color: #3498db;
          color: white;
          padding: 12px 30px;
          text-decoration: none;
          border-radius: 5px;
          transition: 0.3s;
          border: none;
          cursor: pointer;
          font-size: 16px;
}
                    
.btn:hover {
          background-color: #2980b9;
          }
                    
.products {
          padding: 60px 0;
          }
                    
.products h2 {
          text-align: center;
          margin-bottom: 40px;
          font-size: 28px;
          }
                    
.product-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
          gap: 20px;
          }
                    
.product-card {
          background: white;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 2px 8px rgba(0,0,0,0.1);
          transition: 0.3s;
}
                    
.product-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
                    
.product-image {
          width: 100%;
          height: 200px;
          background-color: #04bdebff;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 48px;
          }
                    
.product-info {
          padding: 15px;
}
                    
.product-info h3 {
          margin-bottom: 10px;
          font-size: 16px;
          }
                    
.product-info p {
          color: #666;
          font-size: 14px;
          margin-bottom: 10px;
}
                    
.price {
          color: #e74c3c;
          font-weight: bold;
          font-size: 18px;
          margin-bottom: 10px;
          }
                    
footer {
          background-color: #2c3e50;
          color: white;
          text-align: center;
          padding: 20px 0;
          margin-top: 40px;
          }

.title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
}

.logo-title {
    width: 10px;
    height: auto;
}

@media (max-width: 768px) {

    header {
        padding: 14px 0;
    }

    header .container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .logo h1 {
        font-size: 20px;
        line-height: 1.2;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }

    .logo img {
        width: 34px;
        height: auto;
    }
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a {
        margin: 0;
        padding: 6px 12px;
        background: rgba(255,255,255,0.1);
        border-radius: 6px;
        font-size: 14px;
    }

    nav a:hover {
        background: rgba(255,255,255,0.2);
        color: #fff;
    }
}
