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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", sans-serif;
    line-height: 1.55;
    background-color: #fafafa;
    color: #111;
    padding: 40px 20px;
}

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: left; /* Ensures all content aligns left */
}

/* Header Style – Apple-like minimal spacing + strong typography */
header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 24px;
    margin-bottom: 40px;
    text-align: left; /* Remove center alignment */
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: #000;
}

.last-updated {
    font-size: 0.9rem;
    color: #6e6e73;
}

/* Section Titles */
h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 40px;
    color: #1d1d1f;
}

/* Body Text */
p,
li {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: #1d1d1f;
    text-align: left; /* Remove justified text to match Apple style */
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Divider style — thinner and cleaner like Apple */
.divider {
    border: none;
    height: 1px;
    background-color: #e5e5e5;
    margin: 40px 0;
}

/* Contact box styling */
.contact-info {
    background-color: #f5f5f7;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-item span {
    font-size: 1.05rem;
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}