html,
body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

main {
    flex: 1;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding-top: 55px;   /* Topbar height */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header{
    --page-header-image: url("images/about-banner.jpg");
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    color: #004d99;
}

/* Prevent Layout Shift */
.main-content {
    margin-top: 55px;
}

/* Page section animation */
.page-section {
    display: none;
}
.page-section.active-section {
    display: block;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {opacity:0; transform:translateY(7px);}
    to {opacity:1; transform:translateY(0);}
}

.section {
    margin-bottom: 40px;
}

.section p {
    line-height: 1.8;
}
section.lyrics-section {     
    background: #ffffff;     
    border-radius: 20px;     
    padding: 25px;     
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);     
    margin: 20px;          
    position: relative;     
    overflow: hidden; 

    display: inline-block;
    width: 280px;             /* fixed same width */
    min-height: 280px;        /* fixed same height */
    vertical-align: top;
    text-align: center;       /* uniform alignment */
}  

section.lyrics-section::before {     
    content: "";     
    position: absolute;     
    top: -50%;     
    left: -50%;     
    width: 200%;     
    height: 200%;     
    background: radial-gradient(circle at center, #e0f7fa, transparent 70%);     
    opacity: 0.4;     
    z-index: 0;     
    transform: rotate(30deg); 
}  

.lyrics-content {     
    position: relative;     
    z-index: 1; 
}  

.lyrics-title {     
    font-size: 1.5em;        /* unified */
    color: #00695c;     
    margin-bottom: 15px;     
    font-weight: 600; 
}  

.lyrics {     
    font-size: 1.1em;        /* unified */
    line-height: 26px;       
    font-family: Georgia, 'Times New Roman', Times, serif;     
    white-space: pre-line;     
    color: #444;     
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0 5px;
}  

.lyrics:hover {     
    color: #00897b;     
    transform: scale(1.02); 
}  

@media (max-width: 700px) {     
    section.lyrics-section {         
        margin: 20px auto;       
        display: block;          
        width: 90%;              
        min-height: auto;        /* allow flexibility on mobile */
    }      

    .lyrics-title {         
        font-size: 1.3em;     
    }      

    .lyrics {         
        font-size: 1em;     
    } 
}


.values-list,
.offers-list {
    list-style-type: none;
    padding: 0;
}

.values-list li,
.offers-list li {
    background-color: #e2e2e2;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: white;
    padding: 5px 0;
    text-align: center;
    position: relative;
    bottom: 0%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#p1 {
    font-weight: bold;
}

h3 {
    color: #4fa1f4;
}

.footer {
    background: #004d99;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.footer p {
    margin: 0;
}
/* =====================================================
   MOBILE RESPONSIVE OVERRIDES
   Desktop rules above are untouched.
   ===================================================== */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    h2 {
        font-size: 1.3em;
    }
}