/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header Styles */
header {
    background: #7851A9;
    color: white;
    padding: 10px 0;
}

header .logo {
    height: 50px;
    vertical-align: middle;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Support Forum Section */
.support-forum {
    text-align: center;
    padding: 40px 0;
}

.support-forum h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.support-forum p {
    font-size: 18px;
    margin-bottom: 40px;
}

.forum-container {
    text-align: left;
    margin-bottom: 20px;
}

.forum-category {
    margin-bottom: 40px;
}

.forum-category h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.forum-category ul {
    list-style: none;
    padding: 0;
}

.forum-category ul li {
    margin-bottom: 10px;
}

.forum-category ul li a {
    color: #7851A9;
    text-decoration: none;
    font-size: 18px;
}

.forum-category ul li a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin-right: 20px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer .social-media {
    margin-top: 10px;
}

footer p {
    margin: 10px 0 0;
}
