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

/* Base Styles */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    padding: 2em 3em;
    line-height: 1.7;
}

/* Header */
.page-header {
    padding-top: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 1em;
}

/* Logo link */
.logo-link {
    display: inline-block;
}

.logo {
    width: 60px;
    height: auto;
}

/* Text next to the logo */
.logo-text {
    font-family: 'Patua One', cursive;
    font-size: 2.2rem;
    color: #000;
    font-weight: bold;
    margin-left: 10px;
}

/* Main Content Container */
.container {
    margin: 0;
    padding: 0;
}

/* Typography */
h1 {
    font-family: 'Patua One', serif;
    font-size: 3.75em;
    font-weight: bold;
    text-align: left;
    color: #10072c;
}

.last-updated {
    text-align: left;
    font-size: 1em;
    color: #666666;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

h2 {
    font-family: 'Patua One', serif;
    font-size: 1.5em;
    font-weight: bold;
    margin-block-start: 2em;
    color: #10072c;
}

section {
    margin-bottom: 1.5rem;
}

p {
    margin-block-start: 1em;
}

/* Link Styling */
a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* List Styling */
ul, ol {
    margin-block-start: 1em;
    padding-left: 2em;
}

li {
    margin-bottom: 0.5rem;
}

ol {
    list-style-type: lower-alpha;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1.5em 2em;
    }

    .page-header {
        justify-content: center;
        text-align: center;
    }

    .logo {
        width: 45px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.3em;
    }
}
