body {
    background-color: #5a8cc6;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.title-wrapper {
    text-align: center;
    margin: 50px 0 60px 0;
}
.title-wrapper h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #02275c;
    letter-spacing: 1px;
    position: relative;
}
.title-wrapper span {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #02275c;
    margin-top: 8px;
    letter-spacing: 2px;
}
.title-wrapper span::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #02275c;
    margin: 12px auto 0;
    border-radius: 2px;
}
.succeeding-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}
.section-title {
    font-size: 32px;
    text-align: center;
    color: #02275c;
    margin-bottom: 50px;
}
.succeeding-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.succeeding-card {
    display: flex;
    background-color: #02275c;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}
.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-wrapper img {
    max-width: 100%;
    max-height: 750px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.card-content {
    flex: 1;
    padding: 10px;
    color: #fff;
}
.description-above {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.description-below {
    font-size: 15px;
    color: #cce0ff;
    line-height: 1.6;
}
.no-results {
    text-align: center;
    font-size: 18px;
    color: #02275c;
}
.back-button-wrapper{
    max-width:1200px;
    margin:0 auto 70px;
    padding:0 20px;
}
.btn-link{
    display:inline-block;
    padding:10px 20px;
    background-color:#02275c;
    color:#ffffff;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
    transition:background-color .2s ease;
}
.btn-link:hover {
    transform:translateY(-5px);
    box-shadow:0 25px 50px rgba(0,0,0,0.7);
}
@media (max-width: 768px) {
    .succeeding-card {
        flex-direction: column;
        text-align: center;
    }
    .image-wrapper {
        flex: none;
        width: 100%;
        padding: 0;
    }
    .image-wrapper img {
        width: 100%;
        height: auto;
        max-height: none;
    }
    .card-content {
        padding: 20px;
    }
}