:root {
    --primary: #00B8C0;
    --secondary: #00334E;
    --accent: #FC9817;
}

.highlight {
    color: var(--primary);
}

.claim-box {
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.bg-shape {
    background-color: var(--primary);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    opacity: 0.2;
}

.bg-shape-lg {
    background-color: var(--secondary);
    width: 50px;
    height: 200px;
    border-radius: 25px;
    opacity: 0.05;
}

.text-custom-primary {
    color: var(--primary);
}

.timeline-container {
    width: 100%;
    display: flex;
    justify-content: center;
}
.timeline-track {
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: #e9ecef;
    border-radius: 2px;
    z-index: 1;
}
.timeline-progress {
    position: absolute;
    width: 4px;
    height: 0;
    background-color: #e9ecef;
    border-radius: 2px;
    z-index: 2;
    transition: height 0.05s linear;
}

.timeline-icon {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #adb5bd;
    transition: all 0.3s ease;
    z-index: 3;
}

.timeline-icon.active {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 15px rgba(0, 184, 192, 0.5);
}

.btn-custom-secondary {
    color: #fff;
    background-color: var(--secondary);
}
.btn-custom-accent {
    color: #fff;
    background-color: var(--accent);
}
.text-secondary {
    color: var(--secondary);
}
.text-accent {
    color: var(--accent);
}
.image-box {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}