/* Body Styling */
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right, #2980B9, #6DD5FA, #FFFFFE, #6DD5FA, #2980B9);
    font-family: "Poppins", "Segoe UI", sans-serif;
    color-scheme: light;
}

/* Introduction Box */
.Introduction {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px 40px;
    text-align: center;
    border: 3px solid #2d6a4f;
    border-radius: 20px;
    background: radial-gradient(circle,
        rgba(255, 255, 254, 1) 0%,   /* Center: white */
        rgba(152, 220, 255, 1) 26%,  /* Light blue */
        rgba(102, 194, 255, 1) 38%,  /* Medium blue */
        rgba(40, 168, 252, 1) 56%    /* Darker blue */
    );
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Introduction:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.img {
    display: block;
    margin: 1rem auto;
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    border: 2px solid #ccc;
}

/* Footer Styling */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    text-align: center;
    border-top: 3px solid #2d6a4f;
    background: radial-gradient(circle,
        rgba(255, 255, 254, 1) 0%,   /* Center: white */
        rgba(152, 220, 255, 1) 26%,  /* Light blue */
        rgba(102, 194, 255, 1) 38%,  /* Medium blue */
        rgba(40, 168, 252, 1) 56%    /* Darker blue */
    );
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    font-family: "Poppins", "Segoe UI", sans-serif;
}

/* Footer Text */
footer p {
    margin: 8px 0;
    font-size: 1em;
}

/* Footer Links */
footer a {
    color: #1b4332;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

footer a:hover {
    color: #2d6a4f;
    text-decoration: underline;
}
