.rose-border {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 2px 8px;
    text-transform: uppercase;
    margin-right: 13px;
    transition: all 0.3s ease-in-out;
    font-size: 0.75rem; /* 12px */
    display: inline-block;
    margin-bottom: 15px;
    background-color: #0000004f;
}

.rose-border:hover {
    color: var(--secondary-color);
    background-color: #00000087;
    box-shadow: 0 0 10px var(--secondary-color);
}

.rose-border:focus {
    color: var(--secondary-color);
    outline: unset;
}

.btn-underline-white {
    color: white;
    text-decoration: underline;
    text-underline-offset: 0.188rem; /* 3px */
    font-size: 0.7rem;
    line-height: 0.9rem; /* 14.4px */
}

.btn-underline-white:hover {
    color: white;
}

.back-to-inspiration {
    box-shadow: inset 0 0 0 0 var(--primary-color);
    color: var(--primary-color);
    padding: 0 .4rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
    font-size: 1rem;
    border: 1px solid var(--primary-color);
}

.back-to-inspiration:hover {
    color: #fff;
    box-shadow: inset 200px 0 0 0 var(--primary-color);
}

.btn-rounded-secondary {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 40px;
    max-width: 250px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border-radius: 24px;
    font-size: 1rem;
    line-height: 1.35rem;
    /*transition: color .3s ease-in-out, box-shadow .3s ease-in-out;*/
    transition: all .3s;
    border: 1px solid var(--secondary-color);
}

.btn-rounded-secondary:hover, .btn-rounded-secondary:focus {
    color: var(--secondary-color);
    /*box-shadow: inset 18.1rem 0 0 0 white;*/
    background-color: #fff;
}

.btn-rounded-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 40px;
    max-width: 250px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border-radius: 24px;
    font-size: 1.15rem;
    line-height: 1.35rem;
    /*transition: color .3s ease-in-out, box-shadow .3s ease-in-out;*/
    transition: all .3s;
    border: 1px solid var(--primary-color);
}

.btn-rounded-primary:hover, .btn-rounded-primary:focus {
    color: var(--primary-color);
    /*box-shadow: inset 18.1rem 0 0 0 white;*/
    background-color: #fff;
}

.btn-rounded-secondary__bg-light-blue {
    background-color: var(--secondary-color);
    color: var(--light-blue);
    padding: 8px 40px;
    min-width: 250px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border-radius: 24px;
    font-size: 1rem;
    line-height: 1.35rem;
    /*transition: color .3s ease-in-out, box-shadow .3s ease-in-out;*/
    transition: all .3s;
    border: 1px solid var(--secondary-color);
}

.btn-rounded-secondary__bg-light-blue:hover, .btn-rounded-secondary__bg-light-blue:focus {
    color: var(--secondary-color);
    /*box-shadow: inset 18.1rem 0 0 0 var(--light-blue);*/
    background-color: #fff;
}

.btn-rounded-primary__bg-light-blue {
    background-color: var(--primary-color);
    color: var(--light-blue);
    padding: 8px 40px;
    max-width: 250px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border-radius: 24px;
    font-size: 1rem;
    line-height: 1.35rem;
    /*transition: color .3s ease-in-out, box-shadow .3s ease-in-out;*/
    transition: all .3s;
    border: 1px solid var(--primary-color);
}

.btn-rounded-primary__bg-light-blue:hover {
    color: var(--primary-color);
    /*box-shadow: inset 18.1rem 0 0 0 var(--light-blue);*/
    background-color: #fff;
}

.btn-rounded-light-blue__border-secondary {
    background-color: #fff;
    color: var(--secondary-color);
    padding: 8px 40px;
    max-width: 300px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    border-radius: 24px;
    font-size: 1rem;
    line-height: 1.35rem;
    /*transition: color .3s ease-in-out, box-shadow .3s ease-in-out;*/
    transition: all .3s;
    border: 1px solid var(--secondary-color);
}

.btn-rounded-light-blue__border-secondary:hover {
    color: #fff;
    /*box-shadow: inset 18.1rem 0 0 0 var(--secondary-color);*/
    background-color: var(--secondary-color);
}

/* Timeline Section */
.timeline-section {
    padding: 60px 0;
    overflow: hidden;
}

.timeline-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-family: 'ivypresto-display', serif;
    color: #002D62;
}

.timeline-container.swiper {
    position: relative;
    padding-bottom: 60px; /* space for scrollbar */
    padding-top: 20px;
    overflow: visible;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    position: relative;
    height: auto;
    z-index: 2;
}

.timeline-content {
    margin-bottom: 30px;
    min-height: 150px;
}

.timeline-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
}

.timeline-dot {
    width: 28.8px;
    height: 28.8px;
    background-color: var(--secondary-color); /* Pink color from image */
    border-radius: 50%;
    z-index: 2;
    position: relative;
}

.timeline-line {
    position: absolute;
    bottom: 14.4px; /* Vertically center with the dot */
    left: 0;
    width: 200%;
    height: 1px;
    background-color: var(--secondary-color); /* Pink color */
    z-index: 1;
}

.timeline-item:last-child .timeline-line {
    width: 100%;
}

.timeline-scrollbar-container {
    width: 80%;
    margin: 40px auto 0;
    position: relative;
    height: 10px;
}

section.bloc-process {
    margin-top: 80px;
}

.swiper-scrollbar {
    background: #e0e0e0;
    height: 8px !important;
    border-radius: 4px;
    bottom: 0 !important;
    position: absolute !important;
    left: 0 !important;
}

.swiper-scrollbar-drag {
    background: var(--secondary-color) !important; /* Pink color */
    border-radius: 4px;
}