/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #fefefe;
    
    margin: 0;
    padding: 0;
}

/* Container Styles */
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Title Styles */
.main-title {
    font-size: 32px;
    color: #1a1463;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subtitle Styles */
h2 {
    font-size: 24px;
    color: #902bf5;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #902bf5;
    padding-bottom: 5px;
}

/* Paragraph Styles */
p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

/* List Styles */
ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 10px;
}

/* Link Styles */
a {
    color: #31bacd;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .main-title {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }

    ul {
        padding-left: 15px;
    }
}

/* Additional Enhancements */
h2::before {
    content: "→ ";
    color: #31bacd;
}

