.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    color: white;
    text-align: center;
    padding: 2rem;
    background-image: url('../img/person2.webp');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
}

/* Email Form Section */
.email-form {
    margin-top: 2rem;
}

.email-input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333; /* Dark text color */
    background-color: #fff; /* Ensure background is white */
}

.email-input::placeholder {
    color: #888; /* Lighter color for placeholder text */
}

.subscribe-button {
    background-color: #EF4444;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: #DC2626;
}

/* How it works Section */
.step-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.step {
    background-color: #FFA500;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-title {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.step-description {
    margin-top: 10px;
    font-size: 0.875rem;
    color: #666;
    max-width: 220px;
    min-height: auto;
}


.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Mobile-specific styles */
@media screen and (max-width: 768px) {
    .step-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-wrapper {
        margin-bottom: 1.5rem;
    }
}
