/* Hero Section */
.hero-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #8B0000;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.hero-title span {
    color: #FF6347;
}

.hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 1024px){
    .hero-description{
        font-size: 12px;
    }
}

.hero-description strong {
    color: #E52113;
}