body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #008cba;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 20px;
}

.product-list {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-item {
    display: flex;
    background-color: white;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.product-item img {
    width: 40%;
    height: auto;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    flex: 1;
}

.product-info h2 {
    margin-top: 0;
    color: #008cba;
}

.product-info p {
    margin: 10px 0;
}

.order-btn {
    padding: 10px 20px;
    background-color: #008cba;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.order-btn:hover {
    background-color: #005f7f;
}

@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
        text-align: center;
    }

    .product-item img {
        width: 100%;
    }

    .product-info {
        padding: 10px;
    }
}

.product-info p {
    line-height: 1.8;
    margin: 20px 0;
}

.btnn {
    color: white;
    background-color: #1A4870;
    margin-left: 10px;
  
  }
  .btnn {
    background: #1A4870;
    border: 1px solid #FF4742;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #1deb43;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    min-height: 40px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    margin-bottom: 10px;
    text-decoration: none;  
}

  .btnn:hover,
.btnn:active {
  background-color: initial;
  background-position: 0 0;
  color: #020101;
}

.btnn:active {
  opacity: .5;
}
  
  






