/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 2rem 1rem;
}

/* Main container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a252f;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    text-align: justify;
    text-indent: 2rem;
    color: #34495e;
}

p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-weight: bold;
    float: left;
    line-height: 3rem;
    margin: 0.2rem 0.2rem 0 0;
    color: #3498db;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

p:last-of-type {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 2.5rem;
    color: #2980b9;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 1rem 0.5rem;
    }

    .container {
        padding: 2rem 1.5rem;
        margin: 0;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    p {
        font-size: 1rem;
        text-align: left;
        text-indent: 1.5rem;
        margin-bottom: 1.5rem;
    }

    p:first-of-type::first-letter {
        font-size: 2.5rem;
        line-height: 2rem;
        margin: 0.2rem 0.15rem 0 0;
    }

    p:last-of-type {
        font-size: 1.1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.95rem;
        text-indent: 1rem;
    }

    p:first-of-type::first-letter {
        font-size: 2rem;
        line-height: 1.5rem;
        margin: 0.2rem 0.1rem 0 0;
    }
}
