/* Reset et styles de base */
body {
    background-color: #f3f4f6; /* bg-gray-100 */
    color: #1f2937; /* text-gray-800 */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 6rem 1rem;
}

h1 {
    font-size: 2.25rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1e40af; /* text-blue-800 */
}

.content {
    background-color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    max-width: 100%;
}

.content p {
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}