/* Wellness CSS Stylesheet */

/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f8ff; /* Alice Blue */
    color: #333333;
    line-height: 1.6;
}

/* Layout */
.container {
    width: 80%;
    margin: 0 auto;
}

.header {
    background: #b0e0e6; /* Powder Blue */
    padding: 20px 0;
    text-align: center;
}

.footer {
    background: #4682b4; /* Steel Blue */
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
}

.main-content {
    padding: 20px;
    margin-top: 20px;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3 {
    color: #2f4f4f; /* Dark Slate Gray */
}

p {
    margin: 0 0 1em 0;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 10px 15px;
    font-size: 1em;
    color: #ffffff;
    background-color: #0073e6; /* Medium Blue */
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #005bb5; /* Cobalt Blue */
}

/* Links */
a {
    color: #0073e6; /* Medium Blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
} 

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }
}