body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1a252f;
}

a {
    text-decoration: none;
    color: #f39c12;
    transition: color 0.3s ease;
}

a:hover {
    color: #e67e22;
}

header {
    background-color: #2c3e50;
    padding: 20px 0;
    text-align: center;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .navbar-brand img {
    width: 150px;
}

header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

header .nav-links li {
    display: inline;
}

header .nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    transition: background-color 0.3s ease;
}

header .nav-links a:hover {
    background-color: #f39c12;
    border-radius: 5px;
}

main {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer {
    background-color: #34495e;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.disclaimer h1 {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Georgia', serif;
}

.disclaimer h2 {
    font-size: 2rem;
    margin-top: 40px;
    color: #ecf0f1;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.disclaimer p,
.disclaimer ul {
    font-size: 1.2rem;
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 20px;
}

.disclaimer ul {
    list-style: disc;
    padding-left: 20px;
}

.disclaimer li {
    margin-bottom: 10px;
}

footer {
    background-color: #34495e;
    padding: 30px 20px;
    color: #ecf0f1;
    text-align: center;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
}

footer .footer-brand img {
    width: 120px;
    margin-bottom: 10px;
}

footer .footer-brand p {
    font-size: 1rem;
    color: #bdc3c7;
}

footer .footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

footer .footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

footer .footer-nav li {
    display: inline-block;
}

footer .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer .footer-nav a:hover {
    color: #f39c12;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .disclaimer {
        padding: 20px;
    }

    .disclaimer h1 {
        font-size: 2rem;
    }

    .disclaimer h2 {
        font-size: 1.6rem;
    }

    .disclaimer p,
    .disclaimer ul {
        font-size: 1rem;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-nav {
        margin-top: 20px;
        justify-content: center;
    }
}
