/* ========================================
   智能制造企业主题 - WellCMS模板样式
   蓝色系设计风格，适合智能制造企业
   ======================================== */

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title h2 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2563eb;
}

.section-title p {
    color: #6b7280;
    font-size: 16px;
    max-width: 600px;
    margin: 20px auto 0;
}

section {
    padding: 80px 0;
}

/* 顶部工具栏 */
.top-bar {
    background: #1a365d;
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar-logo a {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.top-bar-logo span {
    color: #60a5fa;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-phone i,
.top-bar-phone svg {
    color: #60a5fa;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-search {
    position: relative;
}

.top-bar-search input {
    padding: 8px 12px 8px 36px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    width: 200px;
    background: rgba(255,255,255,0.15);
    color: white;
    transition: all 0.3s;
}

.top-bar-search input::placeholder {
    color: rgba(255,255,255,0.7);
}

.top-bar-search input:focus {
    outline: none;
    background: rgba(255,255,255,0.25);
    width: 240px;
}

.top-bar-search i,
.top-bar-search svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
}

.top-bar-links {
    display: flex;
    gap: 4px;
}

.top-bar-links a {
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

.top-bar-links a:hover {
    background: rgba(255,255,255,0.15);
}

.top-bar-links .register-btn {
    background: #60a5fa;
    color: white;
}

.top-bar-links .register-btn:hover {
    background: #3b82f6;
}

/* 主导航 */
.main-nav-wrap {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    position: relative;
}

.main-menu {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 18px 28px;
    color: #374151;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.main-menu > li:hover > a,
.main-menu > li > a:hover {
    color: #2563eb;
}

.main-menu > li.active > a {
    color: #2563eb;
    font-weight: 600;
}

/* 二级下拉菜单 */
.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 8px 0;
}

.main-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .sub-menu li {
    position: relative;
}

.main-menu .sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: #374151;
    font-size: 14px;
    transition: all 0.2s;
}

.main-menu .sub-menu li a:hover {
    background: #eff6ff;
    color: #2563eb;
    padding-left: 24px;
}

/* 三级侧边导航 */
.main-menu .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.main-menu .sub-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Banner幻灯图 */
.banner-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 420px;
}

.banner-slider {
    position: relative;
    height: 420px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.85) 0%, rgba(37, 99, 235, 0.3) 100%);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 25px;
}

.banner-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #2563eb;
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.banner-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Banner指示器 */
.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active {
    background: white;
    width: 36px;
    border-radius: 6px;
}

/* Banner左右箭头 */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.banner-arrow:hover {
    background: rgba(255,255,255,0.4);
}

.banner-prev {
    left: 30px;
}

.banner-next {
    right: 30px;
}

/* 产品展示 */
.product-section {
    background: #f9fafb;
}

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

.product-tab {
    padding: 12px 28px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s;
}

.product-tab:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.product-tab.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 600;
}

.product-desc {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.customize-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #2563eb;
    color: white;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.customize-btn:hover {
    background: #1d4ed8;
}

/* 公司简介 */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-text h3 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 20px;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 36px;
    color: #2563eb;
    font-weight: 700;
}

.stat-item p {
    color: #6b7280;
    font-size: 14px;
    margin-top: 5px;
}

/* 核心优势 */
.advantages-section {
    background: #f9fafb;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.advantage-card h3 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* 解决方案 */
.solutions-section {
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
}

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

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

.solution-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.solution-overlay h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.solution-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

/* 工程案例 */
.cases-section {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
}

.cases-section .section-title h2 {
    color: white;
}

.cases-section .section-title h2::after {
    background: white;
}

.cases-section .section-title p {
    color: rgba(255,255,255,0.8);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

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

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-info {
    padding: 20px;
}

.case-info h3 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 8px;
}

.case-info p {
    color: #6b7280;
    font-size: 13px;
}

/* 定制服务 */
.service-section {
    background: white;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-text h3 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 20px;
}

.service-text p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li i,
.service-features li svg {
    color: #2563eb;
    font-size: 18px;
}

.service-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #2563eb;
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.service-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.service-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* 底部标语 */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-btn.primary {
    background: white;
    color: #2563eb;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-btn.secondary {
    border: 2px solid white;
    color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #2563eb;
}

/* 底部导航 */
.footer-nav-section {
    padding: 60px 0;
    background: #1f2937;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo a {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.footer-logo span {
    color: #60a5fa;
}

.footer-logo p {
    margin-top: 20px;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 25px;
    color: #f3f4f6;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #2563eb;
}

.footer-column ul li {
    padding: 8px 0;
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li:hover {
    color: #60a5fa;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact li i,
.footer-contact li svg {
    color: #60a5fa;
    margin-top: 3px;
}

/* 底部版权 */
.footer-bottom {
    padding: 25px 0;
    background: #111827;
    border-top: 1px solid #374151;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

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

.footer-links a {
    color: #9ca3af;
    font-size: 14px;
}

.footer-links a:hover {
    color: #60a5fa;
}

/* 列表页样式 */
.archive-header {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    padding: 60px 0;
    text-align: center;
}

.archive-header h1 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
}

.archive-header p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.breadcrumb {
    background: #f9fafb;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.archive-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.archive-card .card-thumbnail {
    height: 200px;
    overflow: hidden;
}

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

.archive-card:hover .card-thumbnail img {
    transform: scale(1.1);
}

.archive-card .card-content {
    padding: 25px;
}

.archive-card .card-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.archive-card .card-content h3 a {
    color: #1f2937;
    text-decoration: none;
}

.archive-card .card-content h3 a:hover {
    color: #2563eb;
}

.archive-card .card-excerpt {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.archive-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9ca3af;
}

.archive-card .card-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

/* 内容详情页 */
.post-header {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    padding: 60px 0;
    text-align: center;
}

.post-header h1 {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.post-meta {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.post-meta span {
    margin: 0 10px;
}

.post-thumbnail {
    margin: 40px 0;
}

.post-thumbnail img {
    width: 100%;
    border-radius: 8px;
}

.post-content {
    color: #374151;
    line-height: 1.8;
    font-size: 16px;
}

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.post-tags a {
    display: inline-block;
    padding: 6px 12px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 4px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.post-tags a:hover {
    background: #2563eb;
    color: white;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.post-nav a {
    color: #2563eb;
    text-decoration: none;
}

.post-nav a:hover {
    text-decoration: underline;
}

/* 单页模板 */
.page-content {
    padding: 60px 0;
}

.page-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-menu {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.sidebar-menu .menu-title {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu ul li a {
    display: block;
    padding: 16px 20px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-menu ul li a:hover,
.sidebar-menu ul li.active a {
    background: #eff6ff;
    color: #2563eb;
    border-left-color: #2563eb;
}

/* 分页 */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination .page-item {
    display: inline-block;
    margin: 0 4px;
}

.pagination .page-link {
    padding: 8px 14px;
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* 消息提示页 */
.message-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.message-box {
    padding: 60px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.message-box h1 {
    font-size: 120px;
    color: #2563eb;
    margin-bottom: 20px;
}

.message-box h2 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 15px;
}

.message-box p {
    color: #6b7280;
    margin-bottom: 30px;
}

.message-box .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2563eb;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.message-box .btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .product-grid,
    .solutions-grid,
    .cases-grid,
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .product-grid,
    .solutions-grid,
    .cases-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content,
    .service-content {
        grid-template-columns: 1fr;
    }
    .banner-content h1 {
        font-size: 36px;
    }
    .main-menu {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid,
    .solutions-grid,
    .cases-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .top-bar .container {
        flex-direction: column;
        gap: 15px;
    }
    .top-bar-right {
        flex-direction: column;
    }
    .banner-content h1 {
        font-size: 28px;
    }
    .banner-content p {
        font-size: 16px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .archive-grid {
        grid-template-columns: 1fr;
    }
}
