body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Images/bg.png");
    background-size: cover;
    filter: blur(4px);
    z-index: -1;
}

body.white::before {
    filter: blur(4px) invert(1);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 55px;
}

.heading {
    text-align: center;
    color: #d5d5d5;
    font-size: 2em;
}

.sub-heading {
    color: #d5d5d5;
    font-size: 1.5em;
    margin-top: 20px;
}

p {
    background: #333;
    padding: 15px;
    border-radius: 8px;
    color: #d5d5d5;
    line-height: 1.6;
    font-size: 1em;
}

.info-box {
    display: flex;
    flex-direction: column;
    background: #333;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 1em;
}

.info-item {
    padding: 8px;
    margin-bottom: 10px;
    color: #d5d5d5;
}

.highlight {
    font-weight: bold;
    color: #999;
}

.community-section {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    color: #d5d5d5;
    font-size: 1em;
}

.contact-section a {
    color: #999;
    text-decoration: none;
    font-weight: bold;
}