/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #f3f4f6;
    background: #2d3447;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* Pontifical Page Layout */
#pontifical-page {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}
.container h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #fdd835;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1s;
}
.intro-quote {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    color: #ffeb3b;
    margin-bottom: 2rem;
    animation: fadeInDown 1.2s;
}

/* Section Box Styles */
.section-box {
    background: #3b455a;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 8px solid #fdd835;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}
.section-box h2 {
    font-size: 1.8rem;
    color: #fdd835;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.section-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e1e3e8;
}
.highlighted-text {
    display: inline-block;
    background: #fb8c00;
    color: #ffffff;
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    font-weight: bold;
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
