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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f7;
    padding: 20px;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 3px solid #007aff;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: #515154;
}

/* Last Updated */
.last-updated {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 30px;
    font-style: italic;
}

/* Sections */
section {
    margin-bottom: 25px;
}

/* Lists */
ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 8px;
    color: #515154;
}

/* Contact Email */
.contact-email {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.contact-email a {
    color: #007aff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #0051d5;
    text-decoration: underline;
}

/* Links */
a {
    color: #007aff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

    .container {
        padding: 25px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }
}
