* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #1b1b1b;
    color: #eaeaea;
    line-height: 1.6;
    text-align: center;
}

header {
    background-color: #000000;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo img {
    width: 50vh;
}

.hero-text {
    max-width: 600px;
    text-align: right;
}

.hero-text h1 {
    font-size: 40px;
    color: #f1f1f1;
    font-weight: bold;
}

.hero-text p {
    font-size: 18px;
    margin: 15px 0;
    color: #ccc;
}

.cta-button {
    background-color: #005ad8;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #3498db;
}

.features {
    padding: 50px 20px;
    background-color: #1e1e1e;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
    background-color: #333;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-img img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.feature-text {
    max-width: 600px;
    padding: 0 20px;
}

.feature-text h2 {
    font-size: 28px;
    color: #eaeaea;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 16px;
    color: #999;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        margin-top: 20px;
    }

    .features .feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-img img {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

.pricing-section {
    /* background-color: #f4f4f4; */
    padding: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.cta-button {
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    /* add bottom margin */
    margin-bottom: 20px;
}
