                .hero-banner {
            background: linear-gradient(120deg, #0078d7 60%, #e3f0fc 100%);
            color: #fff;
            padding: 80px 20px 60px 20px;
            text-align: center;
            position: relative;
        }
        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        .hero-banner h1 {
            font-size: 2.8em;
            margin-bottom: 18px;
            font-weight: bold;
            letter-spacing: 1px;
        }
        .hero-banner p {
            font-size: 1.3em;
            margin-bottom: 18px;
        }
        .hero-btn {
            display: inline-block;
            background: #ffd700;
            color: #0078d7;
            padding: 14px 36px;
            border-radius: 30px;
            font-size: 1.1em;
            font-weight: bold;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }
        .hero-btn:hover {
            background: #fff;
            color: #0078d7;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        footer {
            margin-top: 40px;
            text-align: center;
            color: #888;
        }

/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f9f9f9;
    color: #222;
}
/* Card section styles */
.cards-section {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 40px 0;
}
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    width: 300px;
    padding: 24px 18px;
    text-align: center;
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-6px) scale(1.03);
}
.card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
}

/* Image section styles */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 32px;
}
.image-section img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Container card styles */
.container-card {
    background: #e3f0fc;
    border-radius: 12px;
    padding: 32px 24px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: left;
}
.image-description-container {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 32px;
    max-width: 900px;
    margin: 40px auto;
}
.image-description-container img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.image-description-container .description {
    flex: 1;
}
    .hero-nav {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 32px;
    }
    .hero-nav a {
        color: #fff;
        background: transparent;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        padding: 10px 28px;
        border-radius: 24px;
        transition: background 0.2s, color 0.2s;
        display: inline-block;
    }
    .hero-nav a:hover {
        background: #ffd700;
        color: #0078d7;
    }
    

    #checkout {
  margin-top: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-top: 2px solid #ccc;
}
#checkout h2 {
  margin-bottom: 10px;
}
#checkout ul {
  list-style: none;
  padding-left: 0;
}
#checkout li {
  padding: 6px 0;
}
#checkout button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: teal;
  color: white;
  border: none;
  cursor: pointer;
}
