/* Reset a basic style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f0f8ff;
    color: #222;
    position: relative;
    overflow-x: hidden;
}

/* Background */
#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
}

/* Container */
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Headings */
h1 {
    font-size: 2.5em;
    color: #2a4d69;
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    color: #41729F;
    margin-top: 40px;
    border-bottom: 2px solid #89CFF0;
    padding-bottom: 5px;
}

/* Links */
a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 500;
}

a:hover, a:focus {
    color: #0d47a1;
    text-decoration: none;
    outline: none;
}

/* Info table */
.info-table td {
    padding: 8px 10px;
}

.section p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
    hyphens: auto;
}

/* Text fade-in + slide-up animation */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animate main elements */
h1, h2, p, .info-table {
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards;
}

/* Animation delays for sequential effect */
h1 {
    animation-delay: 0.3s;
}

h2 {
    animation-delay: 0.6s;
}

p {
    animation-delay: 0.9s;
}

.info-table {
    animation-delay: 1s;
}
