.pt-container-e8f3688c {
    background-color: #050505;
    padding: 80px 40px;
    font-family: inherit;
    overflow: hidden;
}

.pt-wrapper-e8f3688c {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.pt-timeline-header-e8f3688c {
    position: relative;
    margin-bottom: 60px;
}

.pt-line-e8f3688c {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #C8A24D;
    z-index: 1;
    opacity: 0.6;
}

.pt-markers-grid-e8f3688c {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.pt-marker-col-e8f3688c {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pt-step-circle-e8f3688c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #C8A24D;
    background-color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A24D;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(200, 162, 77, 0.15);
}

.pt-title-e8f3688c {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.pt-subtitle-e8f3688c {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pt-cards-grid-e8f3688c {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.pt-card-e8f3688c {
    background-color: #0a0a0a;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(200, 162, 77, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.pt-card-e8f3688c:hover {
    border-color: rgba(200, 162, 77, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(200, 162, 77, 0.05);
}

.pt-card-img-wrap-e8f3688c {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pt-card-img-wrap-e8f3688c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pt-card-e8f3688c:hover .pt-card-img-wrap-e8f3688c img {
    transform: scale(1.05);
}

.pt-card-content-e8f3688c {
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-grow: 1;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.pt-check-icon-e8f3688c {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.pt-check-icon-e8f3688c svg {
    width: 100%;
    height: 100%;
}

.pt-desc-e8f3688c {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 1199px) {
    .pt-markers-grid-e8f3688c, .pt-cards-grid-e8f3688c {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .pt-line-e8f3688c {
        display: none;
    }
    .pt-timeline-header-e8f3688c {
        display: none; /* Simplification for smaller screens, hide header or restructure */
    }
}

@media (max-width: 991px) {
    .pt-container-e8f3688c {
        padding: 60px 20px;
    }
    
    /* Horizontal scroll snap for mobile */
    .pt-timeline-header-e8f3688c {
        display: block;
        margin-bottom: 40px;
    }
    
    .pt-line-e8f3688c {
        display: none;
    }
    
    .pt-markers-grid-e8f3688c {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .pt-markers-grid-e8f3688c::-webkit-scrollbar {
        display: none;
    }
    
    .pt-marker-col-e8f3688c {
        min-width: 80vw;
        scroll-snap-align: center;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 15px;
        background: #0a0a0a;
        padding: 15px;
        border-radius: 12px;
        border: 1px solid rgba(200, 162, 77, 0.1);
    }
    
    .pt-step-circle-e8f3688c {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .pt-cards-grid-e8f3688c {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        padding-top: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .pt-cards-grid-e8f3688c::-webkit-scrollbar {
        display: none;
    }
    
    .pt-card-e8f3688c {
        min-width: 85vw;
        scroll-snap-align: center;
    }
}
