.angie-hero-section-2814 {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.angie-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.6;
    z-index: 1;
}

.angie-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.angie-hero-content {
    flex: 1;
    min-width: 300px;
}

.angie-hero-tagline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.angie-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    margin-top: 0;
}

.angie-hero-description {
    color: #e4e4e4;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.angie-hero-btn {
    display: inline-block;
    background-color: #92b15e;
    color: #1a2313;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.angie-hero-btn:hover {
    background-color: #7a964a;
}

.angie-hero-card-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.angie-hero-glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    color: #fff;
}

.angie-card-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    color: #fff;
}

.angie-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #fff;
}

.angie-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e4e4e4;
    margin-bottom: 30px;
}

.angie-card-meta {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.angie-card-date, .angie-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #e4e4e4;
    margin-bottom: 8px;
}

.angie-card-date svg, .angie-card-location svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.angie-card-sponsor {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
}

.angie-card-btn {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.angie-card-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .angie-hero-container {
        flex-direction: column;
        padding: 0 20px;
    }
    .angie-hero-card-col {
        justify-content: flex-start;
        margin-top: 30px;
    }
    .angie-hero-title {
        font-size: 2.5rem;
    }
}