.about-hero {
    /* background: linear-gradient(135deg, #2B3269, #141A43, #0E112E); */
    background: url('assets/storeFront3.jpg') center center no-repeat;
    background-size: cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F8FAFC;
    font-family: 'Orbitron', sans-serif;
    padding: 60px 20px;
}

.page-title {
    font-size: 2.5rem;
    color: #a91f23;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-section {
    background: #0E112E;
    padding: 60px 20px;
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
    text-align: left;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1rem;
}

.eli-photo {
    float: right;
    width: 260px;
    max-width: 40%;
    border-radius: 10px;
    margin: 0 0 24px 36px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .eli-photo {
        float: none;
        display: block;
        width: 80%;
        max-width: 280px;
        margin: 0 auto 24px;
    }
}

.commitment-section {
    background: linear-gradient(135deg, #2B3269, #141A43, #0E112E);
    padding: 60px 20px;
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
    text-align: center;
}

.commitment-container {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-container h2 {
    color: #a91f23;
    margin-bottom: 20px;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.commitment-container p {
    font-size: 1rem;
    line-height: 1.8;
}

.subscribe-section {
    background: #0E112E;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: #F8FAFC;
}

.subscribe-container {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-title {
    font-size: 1.8rem;
    color: #a91f23;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-text {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe-input {
    padding: 10px 15px;
    font-size: 1rem;
    border: 2px solid #2B3269;
    border-radius: 6px;
    min-width: 250px;
    max-width: 100%;
    box-sizing: border-box;
}

.subscribe-button {
    background: #a91f23;
    color: #F8FAFC;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: 'Orbitron', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-button:hover {
    background: #c02a2f;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-input {
        width: 100%;
    }
}