/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background-color: #0077cc;
    color: white;
    padding: 20px;
    font-size: 24px;
}

/* Main Content */
main {
    padding: 40px 20px;
}

/* Sections */
section {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Goals List */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: #0077cc;
    color: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.side-image {
    width: 100px; /* Adjust size as needed */
    height: auto;
}

.text-container {
    max-width: 500px;
    text-align: center;
}
