/* ==========================================
   Modern Reset & Variables
   ========================================== */
   :root {
    /* Color Palette */
    --primary-color: #0d47a1; /* Deep Corporate Blue */
    --secondary-color: #1976d2; /* Lighter Blue */
    --accent-color: #ff5252; /* Energetic Red */
    --text-main: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Typography */
    --font-primary: 'Noto Sans SC', sans-serif;
    
    /* Layout */
    --max-width: 1280px;
    --nav-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 24px rgba(0,0,0,0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.section-title p {
    font-size: 16px;
    color: var(--text-muted);
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
    margin-left: 0; /* Reset left margin so it doesn't get cut off */
}

.logo-icon {
    font-size: 32px;
    color: var(--primary-color);
    background: transparent;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    overflow: visible;
}

.logo-text h1 {
    font-size: 35px;
    font-weight: 900;
    color: #003366; /* Dark blue */
    margin: 0;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-en {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: block;
    margin-top: -5px; /* Pull it closer to the Chinese text */
}

.nav-links ul {
    display: flex;
    gap: 40px;
    margin-right: 120px; /* Shift the menu leftward */
}

.nav-links ul li {
    position: relative;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
    display: inline-block;
}


.nav-links a:hover,
.nav-links > ul > li > a.active {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column;
    gap: 0 !important;
    pointer-events: none;
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.nav-links ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 20px !important;
    font-size: 14px !important;
    color: var(--text-main) !important;
    display: block !important;
    font-weight: 400 !important;
    white-space: normal;
    line-height: 1.5;
}



.dropdown-menu li a:hover {
    background-color: rgba(13, 71, 161, 0.05);
    color: var(--primary-color) !important;
    padding-left: 25px !important;
}

.dropdown-menu i {
    transition: transform 0.3s;
}

.nav-links ul li:hover > a > i {
    transform: rotate(180deg);
}

.contact-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.contact-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.3);
}

/* ==========================================
   Buttons & Utilities
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.7) 0%, rgba(10, 25, 47, 0.4) 50%, rgba(10, 25, 47, 0.1) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 650px;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-title .highlight {
    color: #64b5f6;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(13, 71, 161, 0.6);
    z-index: -1;
    border-radius: 6px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 50px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.stat-box .icon {
    width: 50px;
    height: 50px;
    background: rgba(25, 118, 210, 0.2);
    border: 1px solid rgba(25, 118, 210, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #64b5f6;
}

.stat-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #fff;
}

/* ==========================================
   Solutions Section
   ========================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: white;
    transition: var(--transition-smooth);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.solution-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    transition: transform 0.5s;
    box-sizing: border-box;
    position: relative;
    padding: 20px;
}




.solution-card:hover .solution-img-placeholder {
    transform: scale(1.08);
}

.solution-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.solution-content {
    padding: 20px;
    background: white;
    text-align: left;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.solution-icon {
    display: none;
}

.solution-card:hover .solution-icon {
    background: var(--primary-color);
    color: white;
}

.solution-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.4;
}

.solution-content p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-list {
    margin-bottom: 0;
    width: 100%;
    text-align: left;
    margin-top: auto;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--text-main);
}

.feature-list li i {
    color: #4caf50;
    font-size: 14px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.solution-link i {
    transition: transform 0.3s;
}

.solution-link:hover i {
    transform: translateX(5px);
}

/* ==========================================
   Products Section
   ========================================== */
.products-showcase {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.prod-tab {
    padding: 10px 25px;
    background: var(--bg-light);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.prod-tab:hover {
    color: var(--primary-color);
    background: rgba(13, 71, 161, 0.05);
}

.prod-tab.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
}

.product-gallery {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: fadeIn 0.5s ease forwards;
}

.product-gallery.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.prod-item {
    overflow: hidden;
    background: white;
    transition: var(--transition-smooth);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.prod-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.prod-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #f8f9fa;
    transition: transform 0.5s;
    padding: 0;
    box-sizing: border-box;
}

.prod-item:hover .prod-img {
    transform: scale(1.08);
}

.prod-info {
    padding: 20px;
    background: white;
    text-align: left;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prod-info h4 {
    min-height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.4;
}

.view-details-btn {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color, #0056b3);
    color: white;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: auto;
    align-self: center;
}

.view-details-btn:hover {
    background: #004494;
}

/* ==========================================
   About Section
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.4);
}

.experience-badge .year {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
}

.about-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.core-advantages {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.adv-item {
    display: flex;
    gap: 20px;
}

.adv-item i {
    width: 50px;
    height: 50px;
    background: rgba(25, 118, 210, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.adv-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-main);
}

.adv-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================
   News Section
   ========================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-img img {
    transform: scale(1.08);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.news-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 3px;
}

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
}

.read-more i {
    transition: transform 0.3s;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ==========================================
   Footer Section
   ========================================== */
.footer {
    background-color: #0b1120;
    color: #fff;
    padding-top: 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    width: 35%;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: transparent;
    color: white;
    width: 40px;
    height: 40px;
    font-size: 28px;
    border: 2px solid white;
    border-radius: 50%;
}

.footer-brand .logo-text h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-brand .logo-text span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.link-group h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
}

.link-group a:hover {
    color: #64b5f6;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-info i {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: white;
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(13, 71, 161, 0.4);
}

/* ==========================================
   Company Profile Blocks
   ========================================== */
.bh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 70px;
}

.bh-item {
    display: flex;
    flex-direction: column;
}

.block-header {
    display: flex;
    align-items: stretch;
    height: 42px;
    margin-bottom: 20px;
}

.bh-main {
    position: relative;
    background: var(--theme);
    color: white;
    font-size: 22px;
    font-weight: 700;
    padding: 0 40px 0 50px;
    display: flex;
    align-items: center;
}

.bh-main::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 0;
    width: 24px;
    height: 100%;
    background: var(--theme);
    transform: skewX(-25deg);
}

.bh-text {
    position: relative;
    z-index: 1;
    letter-spacing: 15px;
    margin-right: -15px;
}

.bh-line-1 {
    background: var(--theme);
    width: 10px;
    margin-left: 18px;
    transform: skewX(-25deg);
}

.bh-line-2 {
    background: var(--theme);
    width: 6px;
    margin-left: 8px;
    transform: skewX(-25deg);
}

.bh-desc {
    color: var(--theme);
    line-height: 1.8;
    text-align: justify;
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .bh-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Category Cards Hover Effect */
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border-color: var(--primary-color) !important;
}

.category-card:hover .icon-wrapper {
    background: var(--primary-color) !important;
    color: white !important;
}

.category-card .icon-wrapper {
    transition: all 0.3s ease;
}

/* Mobile Overrides for Inline Styles */
@media (max-width: 768px) {
    /* index.html About Us */
    .custom-about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .about-image {
        position: static !important;
    }
    
    /* index.html Products */
    .custom-product-gallery {
        grid-template-columns: 1fr !important;
    }
    
    /* about-profile.html Profile layout */
    .profile-content-wrapper {
        flex-direction: column !important;
    }
    .profile-images-col {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    /* products sidebar */
    .sidebar {
        width: 100% !important;
        position: static !important;
        margin-bottom: 30px !important;
    }
    
    /* inner page banners */
    .banner-container {
        height: 200px !important;
    }
    .banner-container h1 {
        font-size: 32px !important;
    }
}
