/* ーーーーーーー sankareg pageーーーーーーーーーー */

/* =================================
   Section Card Layout
================================= */
.registration-info,
.registration-fee,
.registration-time {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* =================================
   Headings
================================= */
.registration-info h3,
.registration-fee h3,
.registration-time h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ec3c71;
}

.registration-info h4,
.registration-fee h4,
.registration-time h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ec3c71;
}

/* =================================
   Paragraphs
================================= */
.registration-info p,
.registration-fee p,
.registration-time p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Strong Text */
.registration-fee p strong {
    font-size: 1.2rem;
    color: #f74479;
}

/* =================================
   Lists (Unified)
================================= */
.registration-info ul,
.registration-fee ul {
    list-style-type: decimal;
    padding-left: 20px;
}

.registration-info ul li,
.registration-fee ul li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #333;
}

.registration-info ul li strong,
.registration-fee ul li strong {
    color: #ec3c71;
}

.registration-info ul li:hover,
.registration-fee ul li:hover {
    background-color: #f0f8ff;
    border-radius: 4px;
    transition: background-color 0.3s;
}

/* =================================
   Download Button
================================= */
.download-link {
    display: inline-block;
    padding: 10px 15px;
    background: #ec3c71;
    color: #ffffff;
    border: solid 1px rgb(235, 87, 87);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.download-link:hover {
    background-color: #ffffff;
    color: #ec3c71;
    transform: translateY(-2px);
}

/* =================================
   Links inside section
================================= */
.registration-fee a {
    color: #ec3c71;
    text-decoration: underline;
}

.registration-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.registration-info a:hover {
    background-color: #ffffff;
    color: #ec3c71;
}

/* =================================
   Strikethrough
================================= */
.strikethrough {
    position: relative;
    display: inline-block;
}

.strikethrough::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #2DAA9E;
    transform: translateY(-50%);
}

/* =================================
   Responsive
================================= */
@media (max-width: 768px) {

    .registration-info h3,
    .registration-fee h3,
    .registration-time h3 {
        font-size: 1.2rem;
    }

    .registration-info p,
    .registration-fee p,
    .registration-time p {
        font-size: 0.9rem;
    }
}

/* ーーーーーーー sankareg pageーーーーーーーーーー */