body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #333333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

main {
    padding: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-container {
    background-color: #222222;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    color: #ffffff;
}

.footer-section {
    width: 250px;
}

.footer-section h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ff9900;
}

.social-links li {
    display: inline-block;
    margin-right: 10px;
}

.social-links a {
    color: #ffffff;
    /* White icons */
    font-size: 1.2em;
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
}

.more-info-button,
.scroll-to-top {
    background-color: #ff9900;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.more-info-button:hover,
.scroll-to-top:hover {
    background-color: #ff7f00;
}

.more-info {
    display: none;
    margin-top: 10px;
}

.more-info.show {
    display: block;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #ffffff;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}
