:root {
    --primary: #007AFF; /* Apple Blue */
    --text: #1d1d1f;
    --text-secondary: #86868b;
    --bg: #ffffff;
    --bg-alt: #f5f5f7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 0.5em;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
}

nav a {
    margin-left: 20px;
    color: var(--text);
    font-size: 0.9rem;
}

/* Hero */
.hero {
    background: var(--bg-alt);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Sections */
.section {
    padding: 60px 0;
}

.bg-light {
    background: var(--bg-alt);
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.legal-block {
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}

.note {
    font-size: 0.8rem;
    color: orange;
    margin-top: 10px;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}
