/* Hero Block Styles */

.hero-block {
    margin-top: 20px;
}

.hero-block .row {
    align-items: center;
}

.hero-block .padding-y {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-block h1 {
    margin-bottom: 2.5rem;
    margin-top: 0;
}

.hero-block h2,
.hero-block h3 {
    margin-bottom: 1rem;
}

.hero-block .fs-mid {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hero-block .secondary-color {
    color: var(--secondary-color, #ff6b35);
}

.hero-block .fw400 {
    font-weight: 400;
}

.hero-block .text-aligned-right {
    text-align: right;
}

.hero-block .text-aligned-left {
    text-align: left;
}

.hero-block .header-img {
    max-width: 100%;
    height: auto;
}

.hero-block .header-img.h100 {
    height: 100%;
    object-fit: contain;
}

.hero-block .btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-block .btn-wide {
    min-width: 250px;
}

.hero-block .btn-primary {
    background-color: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.hero-block .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.hero-block .btn-secondary {
    background-color: #6c757d;
    color: white;
    border: 2px solid #6c757d;
}

.hero-block .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
}

.hero-block .row-cols-lg-2>* {    
    flex: 1 0 50%;
    width: unset;
}

.hero-block .secondary-text {
    margin-top: 40px;
    text-align: center;
}

.hero-block .features-container {
    margin-top: 10px;
}

.hero-block .features-container .fs-mid {
    margin-top: 10px;
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero-block .row-cols-sm-1 > * {
        width: 100%;
    }
    
    .hero-block .text-aligned-right,
    .hero-block .text-aligned-left {
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-block .header-img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 576px) {
    .hero-block .padding-y {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero-block .btn-wide {
        min-width: 200px;
        font-size: 0.9rem;
    }
}
