body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 20px 0;
    border-bottom: 2px solid #ddd;
}

header h1 {
    font-size: 2.5em;
    color: #333;
}

header h1 a {
    color: #333;
    text-decoration: none;
}

header p {
    font-size: 1.1em;
}

header p a {
    color: #007bff;
}

nav {
    background-color: #00050b;
    padding: 10px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-size: 1.1em;
    text-decoration: none;
    padding: 10px;
    display: block;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #444;
    border-radius: 5px;
}

main {
    padding: 30px;
    background: #fff;
}

.wrapper {
    padding: 20px;
}

.wrapper.style2.special {
    background: #f9f9f9;
}

.spotlight {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.spotlight .image {
    flex: 1;
    max-width: 100%;
    margin-right: 20px;
}

.spotlight .content {
    flex: 2;
}

.spotlight img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer .copyright {
    margin-top: 10px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #007bff;
}

.icons.major {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.icons.major li {
    margin: 0 15px;
}

.icons.major li .icon {
    font-size: 2em;
    color: #333;
}

.icons.major li .icon:hover {
    color: #007bff;
}

.short-image {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}
