body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4e9ff; 
    color: #4a2a6d; 
    overflow: auto; 
}

.container {
    max-width: 1200px; 
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8); 
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(148, 0, 211, 0.2); 
}

h1 {
    text-align: center;
    color: #6b3d9a; 
    font-size: 2.5em;
    margin-bottom: 20px;
}

hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #6b3d9a, transparent); 
    margin: 20px 0;
}

a {
    color: #8256d2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #da46b5; 
    text-decoration: underline;
}

.content-wrapper {
    display: flex;
    gap: 20px; 
}

.left-column {
    flex: 1; 
}

.right-column {
    flex: 1; 
}

.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9); 
    border-radius: 5px;
    transition: background 0.3s ease;
}

.link-list li:hover {
    background: rgba(230, 230, 250, 0.9); 
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #6b3d9a;
}

h4 {
    margin-bottom: 5px;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
}