/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background-color: #3498db;
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideInTop 1s ease-out;
}
header h1 {
    margin: 0;
    font-size: 36px;
    letter-spacing: 1.5px;
}

/* Main Content */
.container {
    flex: 1;
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

h2 {
    font-size: 28px;
    color: #3498db;
    margin-bottom: 15px;
    position: relative;
    animation: fadeInLeft 1s ease-out;
}
h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #3498db;
    margin-top: 5px;
}

h3 {
    font-size: 24px;
    color: #333;
    margin-top: 15px;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

/* Lists */
ul {
    list-style-type: none;
    padding: 0;
}
ul li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    margin: 20px 0;
    color: white;
    background-color: #3498db;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}
.btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

/* Links */
.links {
    margin-top: 30px;
    text-align: center;
}
.links a {
    color: #3498db;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    transition: color 0.3s;
}
.links a:hover {
    color: #2980b9;
}

/* Footer */
footer {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}
footer p {
    margin: 0;
    font-size: 16px;
}

/* Animations */
@keyframes slideInTop {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Header style */
header {
    background-color: #2196F3; /* Blue color from your original site */
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}
