@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f4 100%);
    color: #2d3748;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

header {
    background: linear-gradient(120deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

main {
    max-width: 900px;
    margin: auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

section {
    margin-bottom: 35px;
    border-left: 4px solid #667eea;
    padding-left: 25px;
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateX(5px);
}

section h2 {
    color: #4a5568;
    margin-top: 0;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

div h3 {
    color: #4a5568;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

img {
    max-width: 280px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #667eea;
    display: block;
    margin: 25px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

ul, ol {
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
    position: relative;
}

li::marker {
    color: #667eea;
}

a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #5a67d8;
    border-bottom: 1px solid #5a67d8;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    font-size: 0.95em;
    color: #718096;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}