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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #0066cc;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

section {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section h2 {
    color: #0066cc;
    margin-bottom: 1rem;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
}

section p {
    margin-bottom: 1rem;
}

.details ul {
    list-style: none;
}

.details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.details li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #0066cc;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #ddd;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    section {
        padding: 1rem;
    }
}