body {
    font-family: 'Cairo', sans-serif;
    background-color: #ffffff;
    color: #1a202c;
    line-height: 1.8;
}

.section-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.section-card:hover {
    border-color: #7c3aed30;
    box-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.1);
}

h2 {
    color: #7c3aed;
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

h3 {
    color: #1a202c;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

ul {
    padding-right: 1.5rem;
    list-style-type: none;
}

li {
    margin-bottom: 0.75rem;
    position: relative;
}

li::before {
    content: "•";
    color: #7c3aed;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: -1em;
    position: absolute;
    right: -1.2rem;
}

.nav-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
