/* Global Styles */
body {
    font-family: 'Georgia', serif;
    background-color: #f4f1e1;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #d7a6c6;  /* Soft pink */
    color: white;
    text-align: center;
    padding: 2em 0;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.2em;
}

main {
    padding: 2em;
}

/* Section Styling */
section {
    background-color: white;
    border-radius: 8px;
    padding: 1.5em;
    margin-bottom: 2em;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2em;
    color: #c97eaa;  /* Lavender Pink */
    text-align: center;
    margin-bottom: 1em;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 1.1em;
    margin: 1em 0;
}

/* Links */
a {
    color: #c97eaa;  /* Lavender Pink */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Form Styling
