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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.wise-orbit {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

header h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.subtitle {
    color: #64748b;
    font-size: 18px;
    font-weight: 500;
}

main h1 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 10px;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 16px;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #1f2937;
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

h3 {
    color: #374151;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
}

p {
    margin-bottom: 15px;
    color: #4b5563;
    font-size: 16px;
}

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

li {
    margin-bottom: 8px;
    color: #4b5563;
    font-size: 16px;
}

strong {
    color: #1f2937;
    font-weight: 600;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

footer p {
    margin-bottom: 10px;
}

.developer {
    color: #6b7280;
    font-size: 14px;
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 30px 15px;
    }
    
    header h1 {
        font-size: 36px;
    }
    
    main h1 {
        font-size: 28px;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
}