.procedures {
    width: 1920px;
    margin: 0 auto;
    background-color: #F8F5EE;
    padding: 160px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.procedures__container {
    width: 1440px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.procedures__title {
    color: #050409;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    line-height: 56px;
    text-align: center;
    margin-bottom: 10px;
}

.procedures__dots {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.procedures__dot {
    width: 6px;
    height: 6px;
    background-color: #B2A27F; /* Placeholder for dot color, adjust as needed */
    border-radius: 50%;
}

.procedures__grid {
    display: grid;
    grid-template-columns: repeat(4, 350px);
    gap: 40px 16px;
    width: 100%;
    justify-content: center;
}

.procedure-card {
    background-color: #1C1A29;
    box-shadow: 8px 12px 30px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.procedure-card:hover {
    transform: translateY(-8px);
    background-color: #242233;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.procedure-card__image {
    width: 264px;
    height: 264px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    /* Basic border for now, can be updated with gradient if needed */
    border: 1px solid #949DA0;
}

.procedure-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.procedure-card:hover .procedure-card__image img {
    transform: scale(1.05);
}

.procedure-card__title {
    color: #FFF8EA;
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
    min-height: 60px; /* 2 lines */
    display: flex;
    align-items: center;
    justify-content: center;
}

.procedure-card__desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.procedure-card__desc p {
    color: #FFF8EA;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.procedure-card__badge {
    background-color: #595863;
    border-radius: 20px;
    padding: 8px 30px;
    color: #FFF8EA;
    font-family: var(--font-main);
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
    display: inline-block;
}

.procedure-card__price {
    color: #FFF8EA;
    font-family: var(--font-heading); /* Check if it should be heading or main */
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.procedure-card__btn {
    width: 100%;
    height: 50px;
    border: 1px solid #FDC667;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF8EA;
    font-family: var(--font-main);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.procedure-card__btn:hover {
    background-color: #FDC667;
    color: #050409;
}

.procedure-card__btn-details {
    width: 100%;
    height: 50px;
    border: 1px solid #FDC667;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF8EA;
    font-family: var(--font-main);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.procedure-card__btn-details:hover {
    background-color: #FDC667;
    color: #050409;
}
