/* Custom Fonts */
body {
    font-family: 'Quicksand', sans-serif;
    background-color: #FDF4F5; /* Pale Pink */
    color: #4B4453; /* Dark Gray for text */
    margin: 0;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Pacifico', cursive;
    color: #FFB8BF; /* Soft Pink */
}

/* Header */
header {
    background-color: #FFB8BF; /* Soft Pink */
    color: white;
    text-align: center;
    padding: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* ... rest of the CSS code ... */

}