/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.5;
}

header {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
}

header .logo img {
    max-width: 200px;
    width: 100%;
}

main {
    text-align: center;
    padding: 50px 0;
}

.hero {
    background: linear-gradient(145deg, #1a1a1a, #333);
    border-radius: 10px;
    padding: 50px;
    margin: 20px auto;
    max-width: 600px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #f39c12;
    border: none;
    padding: 15px 30px;
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e67e22;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
}

.feature {
    background-color: #222;
    border-radius: 8px;
    padding: 20px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.feature h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
}

footer {
    background-color: #000;
    color: #888;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

footer .footer-text {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        margin-bottom: 20px;
        width: 80%;
    }

    .hero {
        padding: 30px;
    }
}

