.hero-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: #f5f5f5;
}

.hero-left {
    width: 20%;
}

.hero-logo {
    max-width: 120px;
}

.hero-center {
    width: 50%;
}

.hero-center h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-center p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-buttons .btn {
    background: #c0392b;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin-right: 10px;
    border-radius: 5px;
}

.hero-buttons .btn-outline {
    background: transparent;
    border: 1px solid #c0392b;
    color: #c0392b;
}

.hero-right {
    width: 30%;
    text-align: right;
}

.hero-img {
    max-width: 300px;
}