
    .courses-bg-logo {
        padding: 3em .8rem;
    }
    .courses-bg-logo h3 {
        text-align: left;
        margin: 2em 0;
    }

/* Luxury Course Goals - Mobile First */
.course-goals {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: luxury-goal-counter;
    position: relative;
}
.section-header h3 {
    text-align: left;
}
.goal-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    counter-increment: luxury-goal-counter;
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--primary) 0%,
        var(--accent) 50%,
        var(--primary) 100%
    );
    border-radius: 5px 0 0 5px;
    transition: all 0.4s ease;
}

.goal-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(159, 13, 45, 0.03) 0%,
        transparent 30%,
        transparent 70%,
        rgba(45, 156, 219, 0.03) 100%
    );
    pointer-events: none;
    border-radius: 16px;
}

.goal-item:hover {
    transform: translateX(12px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.2),
        0 12px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.goal-item:hover::before {
    width: 8px;
    background: linear-gradient(
        180deg,
        #ff6b9d 0%,
        var(--primary) 30%,
        var(--accent) 70%,
        #6bc5ff 100%
    );
}

.goal-number {
    font-family: var(--title-font);
    font-weight: 800;
    color: transparent;
    font-size: 1.3rem;
    margin-right: 1.25rem;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(159, 13, 45, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.goal-number::before {
    content: counter(luxury-goal-counter);
    color: white;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.goal-item:hover .goal-number {
    transform: scale(1.2) rotate(8deg);
    box-shadow: 
        0 6px 20px rgba(159, 13, 45, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #ff3366, var(--primary), var(--accent));
}

.goal-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.goal-title {
    font-family: var(--text-font);
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.goal-item:hover .goal-title {
    color: var(--title-color);
    transform: translateX(4px);
}

/* Enhanced hover effects */
.goal-item:nth-child(odd):hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(249, 250, 251, 0.9) 100%
    );
}

.goal-item:nth-child(even):hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 100%
    );
}

/* Mobile Optimizations */
@media (max-width: 576px) {
    .goal-item {
        padding: 1.25rem 1rem;
        margin-bottom: 0.75rem;
        border-radius: 14px;
    }
    
    .goal-number {
        min-width: 28px;
        height: 28px;
        margin-right: 1rem;
    }
    
    .goal-number::before {
        font-size: 1rem;
    }
    
    .goal-title {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .goal-item:hover {
        transform: translateX(8px) scale(1.01);
    }
}

/* Tablet Enhancements */
@media (min-width: 768px) {
      .courses-bg-logo {
        background:
            linear-gradient(rgba(255, 255, 255, 0.8),
                rgba(255, 255, 255, 0.95)),
            url("/assets/imgs/fightback_logo.webp");
        background-size: contain;
        background-position: center right;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: 600px;
        padding: 3em 0;
    }
    .goal-item {
        padding: 1.75rem 1.5rem;
        margin-bottom: 1.25rem;
        border-radius: 18px;
    }
    
    .goal-number {
        min-width: 36px;
        height: 36px;
        margin-right: 1.5rem;
    }
    
    .goal-number::before {
        font-size: 1.2rem;
    }
    
    .goal-title {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Desktop Luxury */
@media (min-width: 992px) {
    .goal-item {
        padding: 2rem 1.75rem;
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }
    
    .goal-number {
        min-width: 40px;
        height: 40px;
        margin-right: 1.75rem;
    }
    
    .goal-number::before {
        font-size: 1.3rem;
    }
    
    .goal-title {
        font-size: 1.15rem;
        line-height: 1.7;
    }
    
    .goal-item:hover {
        transform: translateX(15px) scale(1.03);
    }
}
/* Luxury Highlight Box - Mobile First */
.highlight-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(159, 13, 45, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    text-align: left !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--primary) 0%,
        var(--accent) 50%,
        var(--primary) 100%
    );
    border-radius: 4px 0 0 4px;
    transition: all 0.3s ease;
}

.highlight-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(159, 13, 45, 0.05) 0%,
        transparent 40%,
        transparent 60%,
        rgba(45, 156, 219, 0.05) 100%
    );
    pointer-events: none;
    border-radius: 16px;
}

.highlight-box:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(159, 13, 45, 0.3);
}

.highlight-box:hover::before {
    width: 6px;
    background: linear-gradient(
        180deg,
        #ff3366 0%,
        var(--primary) 30%,
        var(--accent) 70%,
        #6bc5ff 100%
    );
}

.highlight-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.highlight-box:hover .highlight-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.highlight-text {
    font-family: var(--text-font);
    font-size: 1.05rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.highlight-box:hover .highlight-text {
    color: var(--title-color);
    transform: translateX(4px);
}

/* Tablet */
@media (min-width: 768px) {
    .highlight-box {
        padding: 1.75rem 1.5rem;
        margin: 2rem 0;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .highlight-box {
        padding: 2rem 1.75rem;
        margin: 2.5rem 0;
    }
    
    .highlight-text {
        font-size: 1.15rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .highlight-box {
        padding: 1.25rem 1rem;
        margin: 1.25rem 0;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    
    .highlight-box::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }
    
    .highlight-icon {
        font-size: 1.5rem;
    }
    
    .highlight-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .highlight-box:hover .highlight-text {
        transform: translateY(2px);
    }
}
