/* Custom styling for Get Quote button in navigation */
.mainmenu .theme_button.color1 {
    padding: 8px 20px !important; /* Less Y padding (8px instead of 15px), more X padding (20px instead of 25px) */
    margin-left: 10px; /* Add some space from other nav items */
    font-size: 14px !important; /* Slightly smaller font for nav */
    border-radius: 25px !important; /* More rounded for button appearance */
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    display: inline-block;
    text-align: center;
    color: #232323 !important;
    background-color: #ffc326 !important;
    border: 2px solid #ffc326 !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mainmenu .theme_button.color1:hover,
.mainmenu .theme_button.color1:focus {
    color: #ffc326 !important;
    background-color: transparent !important;
    border-color: #ffc326 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* Ensure proper alignment in navigation */
.mainmenu li:last-child {
    margin-left: 5px;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .mainmenu .theme_button.color1 {
        margin: 10px 0 !important;
        display: block !important;
        text-align: center !important;
    }
}