* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

.navbar {
    background-color: #18355D;
    padding: 10px;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.navbar-top .left {
    display: flex;
    align-items: center;
    margin: 0 2in;
}



.navbar-top .left a {
    margin-right: 15px;
    text-decoration: none;
    color: #fff;
    
}

.navbar-top a:hover {
    font-weight: bold;
}

.navbar-top .right {
    display: flex;
    align-items: center;
    margin: 0 2in;
}



.navbar-top .right input[type="text"] {
    margin-right: 10px;
    padding: 5px;
    border: none;
    border-radius: 3px;
}

.navbar-top .right a {
    margin-right: 10px;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar-top .right a:hover {
    font-weight: bold;
}

.navbar-top .right .dropdown {
    position: relative;
}

.navbar-top .right .dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    min-width: 160px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.navbar-top .right .dropdown-content a {
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
    color: #333;
}

/*.navbar-top .right .dropdown:hover .dropdown-content {
    display: block;
} */

.navbar-bottom {
    background-color: #ADE8FF;/*#18355D;*/
    padding: 20px;
    color: #000;
    display: flex;
    align-items: center;
}

.navbar-bottom .right {
    display: flex;
    align-items: center;
    margin: 0 2in;
}

.navbar-bottom .left {
    display: flex;
    align-items: center;
    margin: 0 2in;
    gap: 10px;
}

.navbar-bottom .company-name {
    font-weight: bold;
    font-size: 20px;
    align-items: center;
}

.navbar-bottom .dropdown {
    position: relative;
    display: inline-block;
}

.navbar-bottom a {
    color: #000;
    text-decoration: none;
    margin-left: 0 1in;
}

.navbar-bottom a:hover {
    background-color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 4px;
}

 .navbar-bottom .dropdown-content {
    display: none;
    position: absolute;
    background-color: #00A8E8;
    min-width: 160px;
    z-index: 1;
}

.navbar-bottom .dropdown-content a {
    color: #fff;
    padding: 10px;
    display: block;
    text-decoration: none;
}

.navbar-bottom .dropdown:hover .dropdown-content {
    display: block;
} 

.navbar-bottom button {
    align-items: center;
    margin-left: 10px;
    padding: 8px 20px;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    background-color: #fff;
    color: #18355D;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.navbar-bottom .right button:hover {
    background-color: #18355D;
    color: #fff;
}

.rotate-section {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.rotate-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #18355D;
}

.rotate-section .rotate-items {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotate-section .rotate-item {
    padding: 10px;
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rotate-section .rotate-item:hover {
    transform: scale(1.1);
}

.rotate-section .rotate-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.summary-links {
    background-color: #18355D;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.summary-links .column {
    flex: 1;
    margin-right: 20px;
    margin: 0 1in;
}

.summary-links .column:last-child {
    margin-right: 0;
}

.summary-links h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.summary-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.summary-links ul li {
    margin-bottom: 5px;
}

.summary-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: color 0.3s ease;
}

.summary-links ul li a:hover {
    color: #fff;
    cursor: pointer;
}

.footer {
    background-color: #18355D;
    padding: 20px;
    color: #fff;
    text-align: center;
    font-size: 12px;
}

footer {
    background-color: #18355D;
    padding: 20px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.promotions {
    background-color: #f9f9f9;
    padding: 20px;
}

.promotions article {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    margin: 0.5 2in;
}

.promotions article:hover {
    transform: translateY(-5px);
}

.promotions .article-heading {
    text-align: center;
    margin-bottom: 20px;
}
  
.promotions .article-heading h2 {
    font-size: 28px;
    color: #333333;
}

.promotions article .article-content {
    flex: 1;
    margin-bottom: 40px;
    margin: 0 2in;
}
  
.promotions .article-content p {
    margin-bottom: 22px;
    color: #666666;
}
  
.promotions .article-heading h3 {
    color: #333333;
    /*margin-bottom: 10px;*/
}

.promotions article .article-content .article-image {
    width: 300px;
    height: auto;
    padding-right: 20px;
}

.promotions .article-content .article-subheading {
    font-size: 16px;
    color: gray;
    text-decoration: underline;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}
  
.section-heading h2 {
    font-size: 28px;
    color: #333333;
}
  
.section-content {
    margin-bottom: 40px;
    margin: 0 2in;
}
  
.section-content p {
    margin-bottom: 20px;
    color: #666666;
}
  
.section-heading h3 {
    font-size: 24px;
    color: #333333;
    /*margin-bottom: 10px;*/
}
  
  .section-content ul {
    list-style-type: disc;
    padding-left: 20px;
}
  
  .section-content ul li {
    margin-bottom: 10px;
    color: #666666;
}
