body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1f1f1f;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
}

.hero {
    background: #282828;
    padding: 50px 0;
    text-align: center;
}

.apps, .about, .contact {
    padding: 50px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.app-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.app-item {
    background: #1f1f1f;
    padding: 20px;
    margin: 10px;
    width: 45%;
    text-align: center;
}

.app-item h3 {
    margin-top: 0;
}

button {
    background: #ff9800;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background: #e68900;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #1f1f1f;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    color: #fff;
}

.close-modal {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-modal:hover, .close-modal:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

footer {
    background: #1f1f1f;
    padding: 10px 0;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

form input, form textarea, form button, form select {
    width: 80%;
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
}

form input, form textarea, form select {
    background-color: #282828;
    color: #ffffff;
}

form input::placeholder, form textarea::placeholder {
    color: #bbbbbb;
}

form input:focus, form textarea:focus, form select:focus {
    outline: none;
    box-shadow: 0 0 5px #ff9800;
}

form button {
    background-color: #ff9800;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #e68900;
}

/* General link styles */
a {
    color: #ff9800; /* Bright orange for better contrast */
    text-decoration: none;
}

a:hover {
    color: #e68900; /* Slightly darker orange on hover */
    text-decoration: underline;
}

/* Navigation link styles */
nav ul li a {
    color: #ff9800; /* Match the general link color */
}

nav ul li a:hover {
    color: #e68900; /* Match the hover color */
}

/* Link styles in the about section */
.about a {
    color: #ff9800; /* Match the general link color */
}

.about a:hover {
    color: #e68900; /* Match the hover color */
}
