/* Contact hero section styling */
.theory-hero {
    background-image: url('../images/pricing-bg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
}

.theory-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.theory-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    display: block;
    margin: 0 auto;
}


.theory-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.theory-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}