body {
    font-family: Arial, sans-serif;
    /* background: linear-gradient(135deg, #1e3c72, #2a5298); */
    background: url('/img/bg.jpeg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: justify;
}

.container {
    max-width: 600px;
    /* width: 90%; */
    /* background: rgba(255, 255, 255, 0.1); */
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 20px;
    /* margin-top: 30px; */
}

.heading-box {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.heading-box img {
    padding: 10px;
    width: 50px;
    border-radius: 50%;
}

h1 {
    font-size: 1.8rem;
    color: #fff;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 15px 0;
    color: #fff;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li, ol li, h3 {
    color: #fff;
    line-height: 1.5;
}

a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
}

a:hover {
    text-decoration: underline;
}

.back-btn {
    /* background: #4CAF50; */
    background: #ff9800;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
    display: inline-block;

    &:hover {
        background: #e68a00;
    }
}
