/* General page styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

/* Header styling */
header {
    background-color: #ff4da6;
    color: white;
    padding: 15px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

/* Navigation menu */
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Hover effect */
nav ul li a:hover {
    color: yellow;
}

/* Active page link */
nav ul li a.active {
    text-decoration: underline;
}

/* About section */
.about-section {
    background: white;
    padding: 30px;
    margin: 20px auto;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.about-section h2 {
    color: #ff4da6;
}

/* Footer */
footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 10px;
}

footer a {
    color: #ff4da6;
    text-decoration: none;
}

footer a:hover {
    color: yellow;
}
