body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

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

header, footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 50px 0;
}

header .brand-logo, footer .white-text {
    font-weight: 700;
}

.navbar-brand, footer h5 {
    font-weight: 700;
}

.section {
    padding: 4rem 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    margin-bottom: 1rem;
}

p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

form {
    margin-top: 2rem;
}

form input, form textarea {
    margin-bottom: 1.5rem;
    background-color: #2c2c2c;
    color: #e0e0e0;
    border: 1px solid #444;
}

form button {
    background-color: #007bff;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

section {
    padding: 50px 0;
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1;
}

section .container {
    position: relative;
    z-index: 2;
}

#home {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

a {
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

/* Add more styles for sections, images, buttons, etc. */