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

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1e1e1e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.feature {
    width: 40%;
    padding: 15px;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.feature h3 {
    font-size: 18px;
    color: #00c8ff;
}

.feature p {
    font-size: 14px;
    color: #bbbbbb;
}

.image-container {
    margin: 30px 0;
}

.image-container img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, #007bff, #0056b3);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: scale(1.05);
}

.footer {
    font-size: 12px;
    color: #777777;
    margin-top: 30px;
    padding: 20px;
    background-color: #181818;
    border-radius: 10px;
}

.small-button {
    font-size: 14px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff8c00, #ff5e00);
    transition: background 0.3s ease, transform 0.2s ease;
}

.small-button:hover {
    background: linear-gradient(135deg, #ff5e00, #e04e00);
    transform: scale(1.05);
}
