/* General body and typography styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    font-size: 14px;
}

/* Header styles */
header {
    background-color: #FF8C00;
    color: #fff;
    padding: 0.8rem 0;
    text-align: center;
    border-bottom: 5px solid #E67E00;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#header-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
    border-radius: 50%;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-8px) rotate(-2deg);
    }
    50% {
        transform: translateY(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

header p {
    font-size: 1rem;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* Social Media Links in Header */
.social-media-links {
    margin-top: 8px;
}

.social-media-links a {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media-links a:hover {
    color: #ffebcc;
    transform: scale(1.1);
}

/* Main layout grid */
main {
    max-width: 1000px;
    margin: 15px auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* General section styling */
section {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* General H2 styling */
h2 {
    color: #FF8C00;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
    margin-top: 0;
    font-size: 1.5rem;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
    font-size: 0.85rem;
}