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

/* Basic Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: #f2f2f2;
    padding: 20px;
    text-align: center;
}

.logo img {
    width: 150px; /* Adjust the width as needed */
}

.top-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.top-menu ul li {
    margin: 0 15px;
}

a {
    text-decoration: none;
    color: #333;
}

/* Style other sections */
section {
    padding: 50px;
    text-align: left;
}

h2 {
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

ul li {
    padding: 5px 0;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    section {
        padding: 30px;
    }

    header {
        padding: 10px;
    }

    .logo img {
        width: 120px;
    }
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}
