/* Base */
body {
    font-family: Arial, sans-serif;
    background: #ffe5ec; /* very light pink */
    color: #4a001f; /* deep maroon */
    margin: 0;
    padding: 0;
}

/* Header with pink→red gradient */
header {
    background: linear-gradient(135deg, #ff99c8, #ff4d6d);
    padding: 20px 40px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
}

header img {
    width: 7em;
    height: 7em;
    margin-right: 15px;
}

/* Main content */
main {
    padding: 40px;
    max-width: 800px;
    margin: auto;
}

section {
    margin-bottom: 40px;
}

/* Section titles in bold pink */
h2 {
    color: #e6004c;
}

/* Links */
a {
    text-decoration: none;
    color: #e6004c; /* link in strong pink */
}

a:hover {
    text-decoration: underline;
}

/* Download button in red shades */
a.download-link {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 20px;
    background: #ff4d6d; /* bright red-pink */
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

a.download-link:hover {
    background: #e6004c; /* darker pink/red on hover */
}

/* Footer with red→pink gradient */
footer {
    padding: 20px;
    background: linear-gradient(180deg, #ffe5ec, #ff99c8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer a {
    color: white;
}

footer a:hover {
    text-decoration: underline;
}

.footer-logo {
    width: 50px; /* adjust as needed */
    height: auto;
    margin-top: 8px;
}
