* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: "Roboto", sans-serif;
    background: url("../bg.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #f4f4f7;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    background: linear-gradient(145deg, rgba(22, 22, 27, 0.95), rgba(37, 37, 48, 0.9));
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    max-width: 880px;
    width: 100%;
    padding: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

h1,
h2 {
    font-family: "Playfair Display", serif;
    color: #ff8c00;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(255, 140, 0, 0.8);
}

p,
li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 20px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

a {
    color: #ffb347;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }
}
