.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 4rem 1rem 5rem 1rem;
    background-color: #255ee0;
    height: 360px;
}

.hero-section h1 {
    font-size: 55px;
}

.hero-section p {
    max-width: 500px;
}

.hero-section img {
    width: 380px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-section {
        padding: 5rem;
    }
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 45px;
    }

    .hero-section p {
        font-size: 18px !important;
    }

    .hero-section img {
        width: 170px !important;
    }
}
