body {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.header-content {
    background-image: url('/img/header-bg.jpg');
    background-size: cover;
    background-position: center center;
    text-align: center;
    padding: 40px 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.logo {
    width: 240px;
}

h1 {
    color: #ff6600;
    margin: 10px 0;
    font-weight: normal;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #ff6600;
}

.container {
    display: flex;
    width: 1200px;
    margin: 30px auto;
    gap: 50px;
}

main {
    width: 800px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

aside.news {
    width: 350px;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

aside.news h2 {
    color: #ff6600;
    margin-top: 0;
}

aside.news ul {
    list-style: none;
    padding: 0;
}

aside.news ul li {
    margin-bottom: 15px;
}

aside.news ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

aside.news ul li a:hover {
    color: #ff6600;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 30px;
}

form {
    margin-top: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ff6600;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

form input:focus, form textarea:focus {
    border-color: #ff6600;
    outline: none;
}

form textarea {
    height: 150px;
    resize: vertical;
}

form input[type="submit"] {
    background-color: #ff6600;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    font-weight: bold;
}

form input[type="submit"]:hover {
    background-color: #e65c00;
}
