@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

:root {
    --p: 0.13 0.03 263.18;
    font-family: "Inter Tight", sans-serif;

}

body {
    background-color: #FAFAFA;
}

.icon-banner {
    color: oklch(var(--p));
}

.color-latest {
    color: oklch(var(--p));
}

.color-button-latest {
    background-color: oklch(var(--p));
}

.button-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button-banner.submit {
    background-color: oklch(var(--p));
    color: #fff;
    /* Teks putih */
}

.navigation-menu-mobile {
    background-color: oklch(var(--p));
}

.button-banner.submit:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* hover:shadow-lg */
}

.button-banner.register {
    border: 2px solid oklch(var(--p));
    /* Border dengan warna utama */
    color: oklch(var(--p));
    /* Teks dengan warna utama */
    background-color: transparent;
    /* Latar belakang transparan */
}

.button-banner.register:hover {
    background-color: oklch(var(--p));
    /* Latar belakang hover untuk Register Now */
    color: #fff;
    /* Teks putih saat hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* hover:shadow-lg */
}

/* Contoh penggunaan di footer */
.footer-container {
    background-color: oklch(var(--p));
    color: #e2e8f0;
    padding: 4rem 1rem;
    font-family: "Inter Tight", sans-serif;
}

/* General Styles for Navbar */
.navbar-starts a {
    color: #229799;
    margin-left: -20%;
    margin-right: 10%;
    font-family: fantasy;
    font-size: 25px;
}

.navbar-custom-everest a {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.navbar-custom-everest a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-custom-everest a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-custom-everest a:hover {
    transform: translateY(-2px);
}



/* Adjusting logo and menu positioning */
.logo-conference {
    margin-left: -200px;
    margin-right: 140px;
}

/* Adjusted styles for headings and dividers */
#speakers h2,
.sponsors h2,
.partners h2 {
    font-size: 25px;
}

#speakers hr,
.sponsors hr,
.partners hr {
    height: 3px;
}

/* Animation for Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.conference-sponsor {
    animation: fadeIn 0.5s ease-out forwards;
}

.conference-sponsor:hover .conference-sponsor-logo {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@keyframes fadeInPartner {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.conference-partner {
    animation: fadeInPartner 0.5s ease-out forwards;
}

.conference-partner:hover .conference-partner-logo {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Sticky Navbar Styles */
.sticky-navbar {
    position: sticky;
    top: 0;
    transition: background-color 0.3s ease;
    background-color: oklch(var(--p));
}

/* Add subtle animation for menu items */
@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-custom-everest a {
    animation: menuFadeIn 0.5s ease-in-out;
}

.navbar-custom-everest a:nth-child(1) {
    animation-delay: 0.1s;
}

.navbar-custom-everest a:nth-child(2) {
    animation-delay: 0.2s;
}

.navbar-custom-everest a:nth-child(3) {
    animation-delay: 0.3s;
}

/* Additional effects for conference logos */
.conference-sponsor:hover .conference-sponsor-logo,
.conference-partner:hover .conference-partner-logo {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transform: scale(1.05);
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Template */

/* Home Style */
.text-content h1 {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 42px;
    padding-right: 1rem;
    font-style: normal;
}

@media (min-width: 1024px) {
    .text-content h1 {
        font-size: 2.5rem;
        padding-right: 2rem;
    }
}

/* Section 1 */

.section-background {
    position: relative;
    background-color: #F5F5F5;
}

.home-everest.section-1 {
    max-width: 100%;
    margin: auto;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.section-1-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    position: relative;
    font-family: "Inter Tight", sans-serif;
    letter-spacing: -0.02em;
}

.section-1-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: oklch(var(--p));
    margin-top: 1rem;
    border-radius: 2px;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 0 auto;
}

.home-everest ul {
    list-style-type: none;
    padding-left: 0;
    margin: 2rem 0;
}

.home-everest li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    transition: transform 0.2s;
    color: #475569;
}

.home-everest li:hover {
    transform: translateX(5px);
}

.home-everest li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-family: "Inter Tight", sans-serif;
    color: oklch(var(--p));
    font-weight: bold;
}

.text-content {
    flex: 1;
}

.text-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1f2937;
}

.text-content p {
    font-family: "Inter Tight", sans-serif;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.hover-up{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.hover-down{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-down {
    transform: translateY(5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .content-container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
}

@media (max-width: 820px) {
    .content-container {
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
    }

    .text-content h1 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .home-everest.section-1 {
        padding: 0 1.5rem;
    }

    .image-content img {
        max-width: 80%;
    }
}

@media (min-width: 1024px) {
    .text-content h1 {
        font-size: 2.8rem;
    }

    .text-content p {
        font-size: 1.15rem;
    }

    .home-everest.section-1 {
        padding: 0 4rem;
    }
}

@media (max-width: 640px) {
    .section-background {
        padding: 2rem 0;
    }

    .text-content h1 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .home-everest.section-1 {
        padding: 0 1rem;
    }

    .image-content img {
        max-width: 90%;
    }
}

/* End Section 1 */

/* Section 2 */
.section-2 {
    margin-bottom: 90px !important;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
    position: relative;
    overflow: hidden;
}

.section-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
}

/* Container Styles */
.content-container {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    position: relative;
}

/* Image Styles */
.image-content2 {
    flex: 1;
    position: relative;
}

.image-content2::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 12px;
    opacity: 0.1;
    z-index: -1;
}

.image-content2 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}


/* Text Content Styles */
.text-content {
    flex: 1;
    padding: 2rem;
}

.section-2-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    position: relative;
    font-family: "Inter Tight", sans-serif;
    letter-spacing: -0.02em;
}

.section-2-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: oklch(var(--p));
    margin-top: 1rem;
    border-radius: 2px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.text-content p strong {
    color: #1e293b;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-2 {
        padding: 4rem 1.5rem;
    }

    .content-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-2 {
        padding: 3rem 1rem;
    }

    .content-container {
        flex-direction: column;
        gap: 2rem;
    }

    .image-content2 {
        width: 100%;
    }

    .image-content2 img {
        transform: none;
        max-width: 100%;
    }

    .text-content {
        padding: 0;
    }

    .section-2-title {
        font-size: 2rem !important;
    }

    .text-content p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .section-2 {
        padding: 2rem 0;
        background: none;
    }

    .image-content2 img {
        box-shadow: none;
        transform: none;
    }

    .content-container {
        gap: 2rem;
    }

    .section-2-title::after {
        display: none;
    }
}

/* End Section 2 */

/* Section 3 */

.section-3 {
    margin-bottom: 90px;
    border-radius: 8px;
}

.section-3-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    position: relative;
    font-family: "Inter Tight", sans-serif;
    letter-spacing: -0.02em;
}

.section-3-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: oklch(var(--p));
    margin-top: 1rem;
    border-radius: 2px;
}

.title {
    font-weight: bold;
    /* Make title bold */
    font-size: 30px;
}

.content-wrapper {
    display: flex;
    /* Use flexbox for layout */
    align-items: center;
    /* Align items vertically */
}

.image-content3 {
    margin-right: 20px;
    /* Space between image and text */
}

.image-content3 img {
    max-width: 100%;
    /* Responsive image */
    height: auto;
    /* Maintain aspect ratio */
}


@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        /* Mengubah arah layout pada layar kecil */
        align-items: flex-start;
        /* Rata kiri untuk teks dan gambar */
    }

    .image-content3 {
        margin-right: 0;
        /* Hapus margin di sisi kanan */
        margin-bottom: 1rem;
        /* Tambahkan margin bawah */
    }
}

/* End Section 3 */

/* Section 4 */

.section-4 {
    text-align: center;
    margin-bottom: 40px !important;
    margin: auto;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
}

.section-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
}

.section-4 h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.section-4 h1::after {
    content: '';
    display: block;
    width: clamp(40px, 10vw, 60px);
    height: 4px;
    background: oklch(var(--p));
    margin: 1rem auto 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-4 h2 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 3rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.02em;
}

.section-4card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin: 0 auto 3rem;
    padding: 1rem;
    max-width: 1200px;
}

.section-4-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2rem);
    min-height: 250px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.03),
        0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    backdrop-filter: blur(10px);
}

.section-4-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, oklch(var(--p)), transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.section-4-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 35px rgba(0, 0, 0, 0.05),
        0 10px 15px rgba(0, 0, 0, 0.03);
}

.section-4-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: clamp(60px, 15vw, 80px);
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.section-4-card-title {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.section-4-card-content {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #64748b;
    line-height: 1.6;
}

.more-details-btn {
    background: oklch(var(--p));
    color: white;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 50px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.more-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.more-details-btn::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0;
    left: -50px;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -50px;
    }

    100% {
        left: 150%;
    }
}

@media (min-width: 320px) {
    .section-4 {
        padding: 3rem 1rem;
    }

    .section-4card-container {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .section-4 {
        padding: 4rem 2rem;
    }

    .section-4card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-4 {
        padding: 5rem 3rem;
    }

    .section-4card-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media print {
    .section-4 {
        padding: 2rem 1rem;
    }

    .section-4-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .more-details-btn {
        display: none;
    }
}

/* End Section 4 */


/* Section 5 */
.section-5 {
    margin: auto;
    max-width: 1400px;
    padding: 30px;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.section-5-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    position: relative;
    font-family: "Inter Tight", sans-serif;
    letter-spacing: -0.02em;
}

.section-5-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: oklch(var(--p));
    margin-top: 1rem;
    border-radius: 2px;
}

.section-5-content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-top: 20px;
}

.section-5-text-content h2 {
    font-size: 1.8rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Inter Tight", sans-serif;

}

.section-5-text-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: "Inter Tight", sans-serif;

}

.section-5-image-content {
    flex: 0 0 300px;
    text-align: center;
}

.section-5-image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-5-image-content h1 {
    font-size: 1rem;
    color: #2c3e50;
    margin-top: 10px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
}

.section-5-image-content p {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-family: "Inter Tight", sans-serif;
}

@media (max-width: 820px) {
    .section-5-content-container {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .section-5-title {
        font-size: 2rem;
    }

    .section-5-text-content h2 {
        font-size: 1.5rem;
    }

    .section-5-image-content {
        flex: 0 0 auto;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

}

@media (max-width: 768px) {
    .section-5-content-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .section-5-image-content {
        margin-bottom: 20px;
    }
}


/* End Section 5 */


/* Footer Style */
.footer-container {
    background-color: oklch(var(--p));
    color: #e2e8f0;
    padding: 4rem 1rem;
    font-family: "Inter Tight", sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #4a5568;
    padding-bottom: 0.5rem;
}

.footer-section p,
.footer-section address {
    margin-bottom: 0.75rem;
    font-style: normal;
    line-height: 1.6;
}

.footer-section a {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-section a:hover {
    color: #90cdf4;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #a0aec0;
}

.copyright strong {
    color: #ffffff;
}

.copyright a {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: #90cdf4;
    text-decoration: underline;
}

.copyright img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.5rem;
}

.flag-visitor {
    margin-top: 15px;
}

/* Annnouncement Template */

.section-announcement {
    font-family: "Inter Tight", sans-serif;
    line-height: 1.8;
    color: #333;
}

.section-announcement h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.section-announcement p {
    margin-bottom: 20px;
    font-size: 16px;
}

.section-announcement strong {
    color: #2c3e50;
    font-weight: 600;
}

.section-announcement ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.section-announcement li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.section-announcement li::before {
    content: '→';
    color: oklch(var(--p));
    position: absolute;
    left: 0;
    font-weight: bold;
}

.section-announcement a {
    color: oklch(var(--p));
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.section-announcement a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid oklch(var(--p));
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {

    .section-announcement h1 {
        font-size: 28px;
    }
}

/* Container styles */
.register-status-everest {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: "Inter Tight", sans-serif;

    line-height: 1.6;
    color: #333;
}

/* Main title */
.register-status-everest>p {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid oklch(var(--p));
}

/* Ordered list styles */
.register-status-everest ol {
    counter-reset: section;
    list-style-type: none;
    padding-left: 0;
}

.register-status-everest ol>li {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.register-status-everest ol>li:hover {
    transform: translateX(5px);
}

/* Section titles */
.register-status-everest ol>li>p {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* Unordered list styles */
.register-status-everest ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.register-status-everest ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
}

.register-status-everest ul li::before {
    content: "•";
    color: oklch(var(--p));
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Links */
.register-status-everest a {
    color: oklch(var(--p));
    text-decoration: none;
    transition: color 0.2s ease;
}

.register-status-everest a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Strong text */
.register-status-everest strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .register-status-everest {
        padding: 1rem;
    }

    .register-status-everest ol>li {
        padding: 1rem;
    }
}

/* End Template */

.navbar-everest {
    max-width: 94rem
        /* 1280px */
    ;
}