/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Reset for Consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container Styling */
.container, .main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styling */
h1, h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

/* Paragraph Styling */
p {
    margin-bottom: 15px;
    text-align: center;
    color: #555;
}

/* Links Styling */
a {
    color: #5ad3b8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #479e8c;
}

/* Buttons Styling */
button {
    background: linear-gradient(90deg, #5ad3b8, #479e8c);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

button:hover {
    background: linear-gradient(90deg, #479e8c, #5ad3b8);
    transform: scale(1.05);
}

/* Input and Form Styling */
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
}

textarea {
    resize: vertical;
}

footer a {
    color: #5ad3b8;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: #479e8c;
}

footer p {
    color: white;
    margin: 5px 0;
}


