body {
    color: #f5f5f5;
    background-image: url("../img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
.img-fluid {
    min-width: 100%;
}
a{
    color: #f59e0b;
}
a:hover, a:active{
    color: #ffffff;
}
.form-control, .btn {
    border-radius: 100px;
}

.btn-primary {
    background-color: #f59e0b;
    border-color: #f59e0b;
    color: #000000;
    transition: all 0.5s;
}
.btn-primary:hover,  .btn-primary:active{
    color: #f59e0b;
    border-color: #f59e0b;
    background-color: transparent;
}
.btn-outline-primary {
    background-color: #ff0033;
    border-color: #ff0033;
    color: #ffffff;
}
.btn-outline-secondary{
    border-color:#ffffff;
    color:#ffffff;
}
.btn-outline-primary:hover, .btn-outline-primary:active {
    background-color: #ffffff;
    border-color: #ffffff;
    color:#ff0033;
}
ol li::marker {
  font-weight: bold;    /* Makes numbers bold */
  font-size: 22px;    /* Changes number size */
}
.checkout-card {
    max-width: 567px;
    position: relative;
    right: 10px;
    top: 10px;
}
.offer-page {
    margin: 0 auto;
}

.offer-title {
    font-weight: bold;
}

.feature-list li {
    margin-bottom: .55rem;
}

.tree-panel {
    min-height: 90vh;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #111111;
}

.video-panel {
    background: #111111;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.description-frame {
    display: block;
    width: 100%;
    height: 100px;
    margin-top: 8px;
    border: 0;
    border-radius: 4px;
    background: #1a1a1a;
    overflow-y: auto;
    overflow-x: hidden;
}

.tree-item {
    cursor: pointer;
}

.tree-item.active {
    font-weight: 700;
}
.list-group-item.active {
    background-color: #ff0033;
    border-color: #ff0033;
}

footer {
    border-top: 1px solid #ddd;
    margin-top: 40px;
    padding: 24px 0;
}
.order-bump-checkbox {
    position: relative;
    left: 10px;
    top: 10px;
    z-index: 5;
}
.animated-button {
    animation-name: animated-call-to-cation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    min-width: 300px;
    max-width: 300px;
}
@keyframes animated-call-to-cation{
    0% {
        transform:rotate(0deg);
    }
    25% {
        transform:rotate(3deg);
    }
    50%{
        transform:rotate(0deg);
    }
    75% {
        transform:rotate(-3deg);
    }
    100% {
        transform:rotate(0deg);
    }
}
.reviews-section {
    width: 100%;
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
}

/* Individual review card */
.review-card {
    display: flex;
    flex-direction: column;

    padding: 28px 24px;

    background: #070d14;

    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    text-align: left;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}

.review-stars {
    margin-bottom: 18px;

    font-size: 18px;

    letter-spacing: 2px;

    color: #f59e0b;
}

.review-text {
    flex: 1;

    margin: 0 0 24px 0;

    color: #f5f5f5;

    font-size: 16px;

    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: auto;
}

.review-avatar {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    overflow: hidden;
    
}

.review-avatar img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
}

.review-author strong {
    display: block;

    color: #f5f5f5;

    font-size: 15px;
}

.review-author small {
    display: block;

    margin-top: 2px;

    color: #6b7280;

    font-size: 13px;
}
iframe {
    min-width: 100% !important;
}

.card {
    background-color: #111827;
}
@media (max-width: 576px) {
    body {
        padding: 16px;
    }
    .reviews-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .reviews-section h2 {
        font-size: 30px !important;
    }

    .review-card {
        padding: 24px 20px;
    }

    .review-text {
        font-size: 15px;
    }
    .toc-section h2 {
        font-size: 30px !important;
    }
}

html {
    scroll-behavior: smooth;
}

.toc-section {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    text-align: left;
}

.toc-section-block {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.toc-section-heading {
    font-weight: 700;
    font-size: 15px;
    color: #111827;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f3f4f6;
}

.toc-lesson-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-lesson-list li {
    font-size: 13px;
    line-height: 1.45;
    color: #374151;
    padding: 3px 0 3px 14px;
    position: relative;
}

.toc-lesson-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff0033;
    font-weight: 700;
}

@media (max-width: 768px) {
    .toc-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}