body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #3b5998;
    margin-bottom: 10px;
}

.header p {
    font-size: 1em;
    color: #666;
}

.social-media {
    margin-top: 15px;
}

.social-media a {
    text-decoration: none;
    color: #ffffff;
    background-color: #3b5998;
    padding: 8px 15px;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s;
    display: inline-block;
}

.social-media a:hover {
    background-color: #2d4373;
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #3b5998;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

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

.section li {
    font-size: 1em;
    margin-bottom: 10px;
    line-height: 1.5;
    padding-left: 25px;
    position: relative;
}

.section li::before {
    content: "❖";
    color: #3b5998;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.highlight-heading {
    font-weight: bold;
    color: #3b5998;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #3b5998;
    padding-bottom: 2px;
    display: inline-block;
}

.section ul li ul {
    list-style: disc;
    padding-left: 25px;
}

.section ul li ul li::before {
    content: "";
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .header h1 {
        font-size: 2em;
    }

    .header p {
        font-size: 0.9em;
    }

    .social-media a {
        padding: 6px 10px;
        font-size: 0.9em;
        margin: 0 5px;
    }

    .section h2 {
        font-size: 1.3em;
    }

    .section li {
        font-size: 0.9em;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8em;
    }

    .header p {
        font-size: 0.8em;
    }

    .social-media a {
        padding: 5px 8px;
        font-size: 0.8em;
    }

    .section h2 {
        font-size: 1.2em;
    }

    .section li {
        font-size: 0.85em;
        padding-left: 15px;
    }
}
