.subscribe {
    padding: 3rem 1rem;
    text-align: center;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.subscribe h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subscribe p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.subscribe-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
    /* You can tweak this */
    border-radius: 10px;
}

.subscribe-form {
    position: relative;
    z-index: 1;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2rem;
}

.subscribe-form input {
    padding: 0.8rem 1rem;
    width: 100%;
    border: 2px solid var(--primary);
    border-radius: 5px;
    font-size: 14px;
}

.subscribe-form button {
    width: 100%;
    max-width: 200px;
}