* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f4f8;
    color: #222;
    line-height: 1.6;
}

header {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 1350px;
    height: 150px;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    margin-top: -20px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: -10px;
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

section h2 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

section p {
    font-size: 1rem;
    color: #333;
}

.scroll-box .scroll-content {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    background-color: #fafafa;
}

.scroll-box .scroll-content::-webkit-scrollbar {
    width: 6px;
}

.scroll-box .scroll-content::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 3px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1e3c72;
    color: white;
    font-size: 0.9rem; }
.scroll-box .scroll-content p {

            word-wrap: break-word;
            white-space: normal;
}