/* styles.css */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #f0349d;
}

header p {
    margin: 0;
    font-size: 1em;
    color: #666;
}

section {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

section h2 {
    font-size: 1.5em;
    color: #f0349d;
    margin-bottom: 10px;
}

section h3 {
    font-size: 1.2em;
    color: #344054;
    margin-bottom: 5px;
}

section p, section ul {
    margin: 0 0 10px;
    font-size: 1em;
    color: #666;
}

section ul {
    padding-left: 20px;
}

section ul li {
    list-style-type: disc;
}

address {
    font-style: normal;
    color: #666;
    line-height: 1.5em;
}
