.custom-inner-banner{
    background-color: #f0da83;
    height: 150px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.custom-inner-banner h2{
    text-align: center;
    font-size: 400%;
}

.product-details-section{
    padding: 6%;
    display: flex;
    gap:2%;
}

.title{
    font-size: larger;
}

.theme-sidebar-one{
    width: 80%;
}

.theme-sidebar-two{
    width: 18%;
    margin-top: -2.8%;
}

.product-option{
    display: inline-block;
    text-align: center;
    width: 80%;
    background-color: #ffffff;
    color: #D8B528;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border-color: #D8B528;
    transition: background-color 0.3s;
    margin-top: 2%;
    border: 2px solid #D8B528;
}

.active{
    background-color: #D8B528;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    width: 80%;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border-color: #D8B528;
    transition: background-color 0.3s;
    margin-top: 2%;
    border: 2px solid #D8B528;
}

.product-option:hover,.active:hover{
    font-weight: bold;
}

.sidebar-brochures button{
    display: inline-block;
    text-decoration: none;
    color:black;
    text-align: center;
    background-color: #D8B528;
    width: 100%;
    padding: 10px 20px;
    border: none;
}

.black-line{
    height: 1px;
    width: 97.5%;
    background-color:#1c171700;
}

.theme-form-one input,
.theme-form-one textarea {
    width: 100%;
    height: 40px; 
    margin-bottom: 20px;
    margin-bottom:1%;
    border: none;
    border-bottom: 1px solid #dfdfdf;
    font-size: 16px;
    outline: none;
}

.theme-button-two{
    background-color: #D8B528;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    width: 50%;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 2%;
    border: 2px solid #D8B528;
}

.theme-sidebar-one img{
    max-width: 100%;
}

.theme-sidebar-one p{
    font-size: large;
}


/* Mobile styles */
@media (max-width: 768px) {
    .product-details-section {
        flex-direction: column; /* Stack elements vertically on mobile */
        padding: 5%; /* Reduce padding for smaller screens */
    }

    .theme-sidebar-one,
    .theme-sidebar-two {
        width: 100%; /* Full width on mobile */
        margin-top: 0; /* Reset margin for mobile layout */
    }

    .theme-button-two {
        width: 100%; /* Full width for button on mobile */
    }

    .custom-inner-banner h2 {
        font-size: 200%; /* Adjust font size for mobile */
    }

    .title {
        font-size: 1.5em; /* Adjust title size for mobile */
    }

    .product-option,
    .active {
        width: 90%; /* Full width for links on mobile */
    }

}

/* Additional adjustments for smaller devices */
@media (max-width: 480px) {
    .custom-inner-banner h2 {
        font-size: 150%; /* Further reduce font size for very small screens */
    }

    .product-details-section {
        padding: 3%; /* Further reduce padding */
    }
}

@media print{
    .second-header{
        display: none;
    }
    .footer-pdf{
        display: none;
    }
    .theme-sidebar-two{
        display: none;
    }
}