
    body {
        background-color: #0d0d0d;
        color: #f1c40f;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .carousel-inner img {
        height: 200px;
        object-fit: cover;
        border-radius: 1.1rem;
    }

    .slider-container {
        margin-bottom: 50px;
        box-shadow: 0 0 30px rgba(255, 255, 0, 0.2);
    }

    .section-divider {
        text-align: center;
     
        margin: 60px auto 30px auto;
    }

    .section-divider::before,
    .section-divider::after {
        content: "";
  
        top: 50%;
        width: 40%;
        height: 1px;
        background: #f1c40f;
    }

    .section-divider::before {
        left: 0;
    }

    .section-divider::after {
        right: 0;
    }

    .section-divider span {
        padding: 0 20px;
        font-size: 1rem;
        text-transform: uppercase;
        color: #f1c40f;
        background-color: #0d0d0d;
    }

    .price-table {
        width: 90%;
        margin: 0 auto 50px auto;
        border-collapse: collapse;
        box-shadow: 0 0 20px rgba(255, 255, 0, 0.2);
    }

    .price-table th,
    .price-table td {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid #333;
    }

    .price-table th {
        background-color: #1a1a1a;
        color: #f1c40f;
        font-size: 1.2rem;
    }

    .price-table tr:hover {
        background-color: #222;
    }

    .price-table td {
        color: #fff;
    }

    .highlight {
        color: #f39c12;
        font-weight: bold;
    }

    .responsive-notes {
    padding: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #f1c40f;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.note-item::before {
    content: "✔";
    color: #00ff00;
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-weight: bold;
}

.note-item strong {
    font-weight: bold;
    white-space: normal;
}

@media (max-width: 576px) {
    .note-item {
        flex-direction: column;
        padding-left: 24px;
    }

    .note-item::before {
        top: 0.15rem;
    }
}
