* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f9f7f1;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

header {
    background-color: #f48fb1;
    color: white;
    padding: 300px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(244, 143, 177, 0.4);
    margin-top: -150px;
}
header img {
    max-width: 400px;
    height: auto;     
    margin-bottom: 15px;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 5px;
}

header p {
    font-size: 1.2rem;
    font-style: italic;
}

main {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

h2 {
    color: #e91e63;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #888;
    font-size: 0.9rem;
}

img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(244, 143, 177, 0.3);
}

a {
    color: #f48fb1;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
