/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    background-color: #f8f9fa;
    color: #343a40;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Section */
.page-header {
    background: linear-gradient(to right, #005c97, #363795);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
}

/* Content Section */
.content {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #212529;
    border-left: 4px solid #007bff;
    padding-left: 10px;
}

.content p,
.content ul {
    margin-bottom: 20px;
    font-size: 16px;
}

.content ul {
    padding-left: 20px;
}

.content ul li {
    list-style: disc;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .content {
        padding: 30px 15px;
    }
}
