body {
    background-color: #fdfbf7;
    color: #000000;
    font-family: "Jost", sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3{
    color: #d35400;
}

a {
    color: #d35400;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

a:hover {
    color: #a04000;
    text-decoration: underline;
}

.banner-container {
    width: 100%;
    height: 280px;
    border-top: 20px solid #F7641E;
    border-bottom: 20px solid #046736;
}

.banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: inset(20% 0 20% 0);
}

.content-wrapper {
    max-width: 1200px;
    margin: auto;
}

.card-custom {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 10px;
}

.quote-box {
    text-align: center;
}

.quote-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c3e50;
}

.points ul li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.points ul li::before {
    content: "\F26B";
    font-family: bootstrap-icons;
    color: #d35400;
    margin-right: 15px;
    font-size: 1.2rem;
}

.disclaimer {
    background-color: #fff8f3;
    padding: 25px;
    padding-bottom: 0;
    font-size: 1rem;
}

.disclaimer p{
    color: black !important;
}

.form-label {
    font-weight: 500;
    margin-top: 15px;
    color: #2c3e50;
}

.form-control,
.form-select {
    border: 1px solid #c9c7c7;
    padding: 12px;
    border-radius: 8px;
    background-color: #fafafa;
}

.form-control:focus,
.form-select:focus {
    border-color: #d35400;
    box-shadow: 0 0 0 0.2rem rgba(211, 84, 0, 0.15);
    background-color: #fff;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-card {
    background-color: #fff;
    border: 1px solid #c9c7c7;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s;
    user-select: none;
    display: flex;
    align-items: center;
}

.checkbox-card:hover {
    background-color: #fcefe3;
    border-color: #d35400;
}

.form-check-input {
    margin-right: 8px;
    margin-top: 0;
    cursor: pointer;
    border: 1px solid #c9c7c7;
}

.corner-btn {
    position: relative;
    padding: 14px 32px;
    font-size: 16px;
    color: white;
    background: #FF4A09;
    box-shadow: 0 10px 25px rgba(255, 74, 9, 0.35), inset -1px -2px 4px rgba(0, 0, 0, 0.35), inset 1px 2px 4px rgba(255, 255, 255, 0.35);
    cursor: pointer;
    margin-top: 50px;
    transition: all 0.4s ease;
}

.corner-btn::before,
.corner-btn::after,
.corner-btn span::before,
.corner-btn span::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.corner-btn::before {
    top: -3px;
    left: -3px;
    border-top: 2px solid #FF4A09;
    border-left: 2px solid #FF4A09;
}

.corner-btn::after {
    bottom: -3px;
    right: -3px;
    border-bottom: 2px solid #FF4A09;
    border-right: 2px solid #FF4A09;
}

.corner-btn span::before {
    top: -3px;
    right: -3px;
    border-top: 2px solid #FF4A09;
    border-right: 2px solid #FF4A09;
}

.corner-btn span::after {
    bottom: -3px;
    left: -3px;
    border-bottom: 2px solid #FF4A09;
    border-left: 2px solid #FF4A09;
}

.corner-btn:hover::before,
.corner-btn:hover::after,
.corner-btn:hover span::before,
.corner-btn:hover span::after {
    opacity: 1;
}

.corner-btn:hover {
    box-shadow: none;
    background: transparent;
    color: black;
}

footer{
    color: white !important;
    background-color: #262525;
    padding: 32px;
}

footer h4{
    position: relative;
    padding-bottom: 8px;
}

footer h4::after{
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    bottom: 0;
    left: 0;
    background: #d35400;
}

.footer-logo a {
    width: 50%;
    display: inline-block;
}

.footer-logo img {
    width: 100%;
    margin: 20px;
}

footer li{
    position: relative;
    margin-left: 0 !important;
    margin-bottom: 10px;
}

footer li::after{
    content: "›";
    position: absolute;
    left: 3px !important;
    top: -5px;
    font-size: 20px;
    font-weight: 600;
    display: block;
    color: #FF4A09;
}

footer .mail i{
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: white;
    background-color: #FF4A09;
    border-radius: 50%;
}

footer .mail a,
footer a{
    text-decoration: none;
    color: white;
    transition: all .4s;
    margin-left: 20px;
    font-size: 16px;
}

footer .mail a:hover,
footer a:hover{
    color: rgb(255, 102, 0);
    text-decoration: underline;
}

footer h4{
    margin-bottom: 30px;
}





@media (max-width: 768px) {
    .content-wrapper {
        padding: 15px;
    }

    .card-custom {
        padding: 25px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .dis{
        padding: 0;
    }

    .banner-container img{
        object-fit: contain;
    }
    
    footer .info{
        padding-left: 40px;
    }
}


.banner {
    width: 100%;
    height: 500px;
    position: relative;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.breadcrumb-row{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    z-index: 1;
    background-color: #FF4A09;
    padding: 20px 30px;
    border-radius: 20px;
    color: white;
    width: max-content;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding-right: 10px;
    top: 0px;
    position: relative;
}

.breadcrumb-row a{
    color: white;
}




