/* Basic Rest and Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header & Navigation */
header {
    margin-bottom: 40px;
    text-align: center;
}

h1.site-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #000;
}

nav a {
    text-decoration: none;
    color: #007aff; /* Apple Blue */
    margin: 0 10px;
    font-size: 16px;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

nav a.active {
    color: #000;
    cursor: default;
    text-decoration: none;
}

/* Headings */
h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Content */
p, li {
    font-size: 17px;
    margin-bottom: 16px;
    color: #333;
}

ul {
    padding-left: 20px;
}

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

a:hover {
    text-decoration: underline;
}

hr {
    border: 0;
    border-top: 1px solid #d2d2d7;
    margin: 50px 0;
}

/* Language Sections */
.lang-section {
    margin-bottom: 60px;
}

.lang-label {
    text-transform: uppercase;
    font-size: 12px;
    color: #86868b;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 28px;
    }
}
