.hero-section {
    position: relative;
    width: 100vw;
    height: 50vh;
    overflow: hidden;
    margin-bottom: 2rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FF6B6B;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.content-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.content-section h4 {
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section ul {
    color: #2c3e50;
}

.content-section li {
    margin-bottom: 0.8rem;
}

.content-section b {
    color: #e74c3c;
    font-weight: 600;
}

#hero-title {
    background: linear-gradient(90deg, #fa903c, #f25642); /* orange to red gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    font-weight: bold;
    text-shadow: none;
}

