/* Shared Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    background: linear-gradient(to right, #f0f9ff, #cbebff);
    color: #333;
    min-height: 100vh;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 90%;
    margin: 20px auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header, footer {
    text-align: center;
    padding: 10px 0;
    color: #5c5cff;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

footer p {
    font-size: 1em;
    color: #888;
}

/* Section Styling */
main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

section h2 {
    color: #5c5cff;
    font-size: 1.8em;
}

section p {
    font-size: 1em;
    line-height: 1.6;
}

/* Buttons and Links */
.btn, a.btn-link {
    display: inline-block;
    padding: 12px 20px;
    background-color: #5c5cff;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover, a.btn-link:hover {
    background-color: #7070ff;
}

/* Images */
img.hero-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}
