* {
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 120px; /* Space for fixed footer */
}
.top {
    background: #333333 linear-gradient(to bottom, #333333, #2b2b2b);
    border-bottom: 1px solid #4d4d4d;
    color: #999999;
    padding: 10px 0;
}
.header {
    background-color: #454545;
    padding: 25px 0;
}
.logo img {
    max-height: 90px;
    height: auto;
}
.icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.icon-box i {
    color: #f7c51e;
    font-size: 36px;
    min-width: 45px;
}
.icon-box__title {
    margin: 0;
    color: #dddddd;
    font-size: 16px;
    font-weight: 600;
}
.icon-box__subtitle {
    color: #989898;
    font-size: 13px;
}
.header-widgets {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}
.header-widgets .widget {
    margin: 0;
}
.navigation {
    background: linear-gradient(to bottom, #ffffff, #ededed);
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.navbar {
    padding: 0;
}
.navbar-collapse {
    font-size: 18px;
}
.navbar-nav {
    width: 100%;
    justify-content: center;
}
.navbar-nav .nav-link {
    color: #999999;
    padding: 20px 35px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}
.navbar-nav .nav-link:hover {
    color: #333333;
    background-color: transparent;
}
.navbar-nav .nav-link.active {
    color: #333333;
    font-weight: 600;
    background-color: transparent;
    border-top: 3px solid #f7c51e;
    padding-top: calc(20px - 3px);
}
.jumbotron {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    width: 100%;
    background-color: #333;
}
.carousel-inner {
    position: relative;
    height: 500px;
}
.item {
    display: none;
    position: relative;
    height: 100%;
}
.item.active {
    display: block;
}
.jumbotron img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-content {
    position: absolute;
    left: 50px;
    bottom: 50px;
    background-color: rgba(68, 68, 68, 0.9);
    padding: 30px 40px;
    max-width: 500px;
    z-index: 10;
}
.jumbotron__title h1 {
    color: white;
    font-size: 42px;
    margin: 0 0 15px 0;
    font-weight: 700;
    line-height: 1.2;
}
.jumbotron__content p {
    color: white;
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(68, 68, 68, 0.8);
    color: white;
    padding: 20px 15px;
    text-decoration: none;
    font-size: 28px;
    z-index: 15;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.carousel-control.left {
    left: 20px;
}
.carousel-control.right {
    right: 20px;
}
.carousel-control:hover {
    background-color: rgba(68, 68, 68, 1);
    color: #f7c51e;
}
.carousel-control i {
    line-height: 1;
}
.page-box {
    margin-bottom: 30px;
}
.page-box--block {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
}
.page-box--inline {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}
.page-box--inline .page-box__picture {
    flex-shrink: 0;
}
.page-box--inline .page-box__picture img {
    width: 100px;
    height: 75px;
    object-fit: cover;
}
.page-box__picture img {
    width: 100%;
    height: auto;
}
.page-box__title {
    margin: 15px 0 10px 0;
    font-size: 18px;
}
.page-box__title a {
    color: #333;
    text-decoration: none;
}
.page-box__title a:hover {
    color: #f7c51e;
}
.read-more {
    color: #1fa7da;
    text-decoration: none;
}
.read-more:hover {
    color: #1098cb;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}
.footer {
    background-color: #f2f2f2;
    padding: 40px 0 20px;
    margin-top: 60px;
}
.footer-bottom {
    background-color: #f7c51e;
    padding: 15px 0;
    color: #666666;
}
.navbar-toggler {
    background-color: #f7c51e;
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
@media (max-width: 991px) {
    .header-widgets-desktop {
        display: none !important;
    }
    .logo img {
        max-height: 70px;
    }
    .icon-box i {
        font-size: 28px !important;
    }
    .icon-box__title {
        font-size: 14px;
    }
    .icon-box__subtitle {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .carousel-inner {
        height: 350px;
    }
    .carousel-content {
        left: 20px;
        bottom: 20px;
        padding: 20px 25px;
        max-width: 90%;
    }
    .jumbotron__title h1 {
        font-size: 28px;
    }
    .jumbotron__content p {
        font-size: 14px;
    }
    .carousel-control {
        padding: 15px 10px;
        font-size: 20px;
        width: 40px;
        height: 40px;
    }
    .carousel-control.left {
        left: 10px;
    }
    .carousel-control.right {
        right: 10px;
    }
    .navbar-nav {
        flex-direction: column;
    }
    .navbar-nav .nav-link {
        padding: 16px 25px;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }
    .navbar-nav .nav-link.active {
        background-color: transparent;
        border-top: 3px solid #f7c51e;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-top: calc(16px - 3px);
    }
}
