#main-navbar {
    min-height: 100px;
}

.hero-shape {
    overflow: visible;
}

.hero-shape svg {
    width: 100%;
    position: absolute;
    height: 600px;
}

@media (min-width: 1200px) {
    .hero-shape svg {
        height: 800px;
    }
}

.feature-div-block {
    width: 238px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 291px;
}

.section-div-card {
    min-height: 305px;
    max-width: 500px;
}

.hero-card {
    background-image: linear-gradient(0deg, rgb(80, 81, 85) 0%, rgba(255, 255, 255, 0) 100%);
    min-height: 525px;
}

.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: #333;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #4a4a4a;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button::after {
    background-size: 20px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 25px;
    background-color: #ffffff;
}

.prop-box {
    width: 190px;
    height: 190px;
}

.prop-box-content {
    height: 100%;
    width: 100%;
}

.hero-text-shadow {
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.41);
}