body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /**background: rgba(0, 0, 0, 0.6);**/
}
.hero h1 {
    font-size: 3.5em;
    margin: 0;
    z-index: 1;
}
.hero p {
    font-size: 1.5em;
    z-index: 1;
}
.cta-button {
    background-color: #ff4757;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1;
}
.cta-button:hover {
    background-color: #ff6b81;
    transform: scale(1.05);
}
section {
    padding: 40px;
    text-align: center;
    background-color: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 20px;
}
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}
.feature {
    background: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin: 10px;
    padding: 20px;
    width: 250px;
    transition: transform 0.2s;
}
.feature:hover {
    transform: scale(1.05);
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    margin-top: 20px;
}

@media (max-width: 768px) {
.hero h1 {
    font-size: 2em;
    margin: 0;
    z-index: 1;
    text-align: center;
}
.hero p {
    font-size: 0.9em;
    z-index: 1;
    text-align: center;
}
.hero {
    margin-top: 40%;
}
}