/* Basic background and global text color */
body {
    background-color: #0e1a2b !important;
    color: #ffffff !important;
}

/* Background and text color for inner blocks */
.sb-page,
.sb-wrapper,
.sb-footer,
.sb-company-hours,
.sb-contact-info,
.sb-company-details__section {
    background-color: #1b2d44 !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 15px;
}

/* Headings */
h1, h2, h3, h4 {
    color: #ffffff !important;
}

/* Button styling */
.sb-button,
.sb-main-button {
    background-color: #f5a623 !important;
    color: white !important;
    border-radius: 6px;
    padding: 10px 20px;
    border: none !important;
    font-weight: bold;
}

/* Button hover effect */
.sb-button:hover,
.sb-main-button:hover {
    background-color: #d4881c !important;
    color: white !important;
}

/* Hide company working hours block */
.sb-company-hours {
    display: none !important;
}