body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #121212;
    color: white;
    text-align: center;
}

header {
    background: #ff9500;
    padding: 20px;
    font-size: 1.5em;
}

section {
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background: #1e1e1e;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

h2 {
    color: #ff9500;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 1.2em;
    margin: 10px 0;
}

button {
    display: block;
    width: 80%;
    max-width: 400px;
    padding: 15px;
    margin: 10px auto;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    background: #ff9500;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #ff7600;
}

.contact-btn {
    background: #0078ff;
}

.contact-btn:hover {
    background: #005fcc;
}

footer {
    background: #ff9500;
    padding: 10px;
    margin-top: 20px;
    font-size: 1em;
    position: relative;
}

#visitor-count {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    font-size: 1em;
}