* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 轮播图样式 */
.carousel-section {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 560px;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12),
                0 10px 40px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border: 10px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    perspective: 1000px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    opacity: 0;
    z-index: 1;
    border-radius: 20px;
    transition: opacity 0.6s;
}

.carousel-slide.prev::before,
.carousel-slide.next::before {
    opacity: 0.5;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.carousel-slide.prev,
.carousel-slide.next {
    opacity: 0.7;
    visibility: visible;
    transform: scale(0.82) translateZ(-150px);
    filter: blur(0.5px) brightness(0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.carousel-slide.prev {
    transform: scale(0.82) translateZ(-150px) translateX(-35%) rotateY(15deg);
}

.carousel-slide.next {
    transform: scale(0.82) translateZ(-150px) translateX(35%) rotateY(-15deg);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateZ(0);
    filter: blur(0);
    z-index: 10;
    animation: slideInCenter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInCenter {
    from {
        opacity: 0;
        transform: scale(0.9) translateZ(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
}

.slide-content {
    flex: 1;
    color: white;
    padding: 40px;
    z-index: 3;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    pointer-events: none;
}

.carousel-slide.active .slide-content {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.carousel-slide.prev .slide-content,
.carousel-slide.next .slide-content {
    opacity: 0.8;
    transform: translateX(-50px);
}

.slide-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    line-height: 1.2;
}

.h1-line1 {
    display: block;
}

.h1-line2 {
    display: block;
    padding-left: 2em;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.98;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.slide-btn {
    padding: 16px 42px;
    font-size: 18px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25),
                0 0 0 4px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.slide-btn:hover::before {
    width: 300px;
    height: 300px;
}

.slide-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35),
                0 0 0 4px rgba(255, 255, 255, 0.4);
    color: #764ba2;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    pointer-events: none;
}

.carousel-slide.active .slide-image {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.carousel-slide.prev .slide-image,
.carousel-slide.next .slide-image {
    opacity: 0.8;
    transform: translateX(50px);
}

.slide-image img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 450px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 4px rgba(255, 255, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.slide-image img:hover {
    transform: scale(1.03);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    pointer-events: none;
    z-index: 100;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.carousel-dots {
    position: absolute;
    bottom: 35px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 14px;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.dot.active {
    background: rgba(255,255,255,0.8);
    border-color: white;
}

.dot.active::after {
    width: 6px;
    height: 6px;
}

.dot:hover {
    transform: scale(1.2);
    background: rgba(255,255,255,0.6);
}

/* 通用区域样式 */
section {
    padding: 80px 0;
    transition: all 0.4s ease;
}

/* 区域间距优化 */
.products-section,
.cases-section,
.news-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #2d3436;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* 卡片容器样式 */
.section-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08),
                0 5px 20px rgba(0, 0, 0, 0.04),
                0 0 0 1px rgba(0, 0, 0, 0.02);
    border: 2px solid #f8f9fa;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.products-section .section-card::before {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.cases-section .section-card::before {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.news-section .section-card::before {
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.12),
                0 8px 30px rgba(0, 0, 0, 0.06);
}

/* 卡片头部 */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, transparent 100%);
}

.title-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.title-icon {
    font-size: 36px;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 查看更多按钮 */
.see-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
    position: relative;
    overflow: hidden;
}

.see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.see-more-btn:hover::before {
    left: 100%;
}

.products-section .see-more-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.35);
}

.cases-section .see-more-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.35);
}

.news-section .see-more-btn {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 6px 20px rgba(67, 233, 123, 0.35);
}

.see-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.products-section .see-more-btn:hover {
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.5);
}

.cases-section .see-more-btn:hover {
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.5);
}

.news-section .see-more-btn:hover {
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.5);
}

.see-more-btn svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.see-more-btn:hover svg {
    transform: translateX(6px);
}

/* 商品区域 */
.products-grid, .cases-grid, .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card, .case-card, .news-card {
    background: #fafafa;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid #e8e8e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.product-card::before, .case-card::before, .news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.product-card::before {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
}

.case-card::before {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
}

.news-card::before {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.1) 0%, rgba(56, 249, 215, 0.1) 100%);
}

.product-card:hover::before,
.case-card:hover::before,
.news-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(240, 147, 251, 0.25),
                0 10px 25px rgba(240, 147, 251, 0.15);
    border-color: #f093fb;
}

.case-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.25),
                0 10px 25px rgba(79, 172, 254, 0.15);
    border-color: #4facfe;
}

.news-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(67, 233, 123, 0.25),
                0 10px 25px rgba(67, 233, 123, 0.15);
    border-color: #43e97b;
}

.product-image, .case-image, .news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.product-card:hover .product-image,
.case-card:hover .case-image,
.news-card:hover .news-image {
    transform: scale(1.1);
}

.product-info, .case-info, .news-info {
    padding: 24px;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.product-name, .case-title, .news-title {
    font-size: 17px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}

.product-card:hover .product-name,
.case-card:hover .case-title,
.news-card:hover .news-title {
    color: #667eea;
}

.product-price {
    font-size: 22px;
    color: #e74c3c;
    font-weight: 800;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-category, .news-date {
    font-size: 14px;
    color: #95a5a6;
    font-weight: 500;
}

/* 新闻描述 */
.news-desc {
    font-size: 14px;
    color: #636e72;
    margin-top: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.6;
}

/* 关于我们 */
.about-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.about-text p {
    font-size: 17px;
    margin-bottom: 18px;
    opacity: 0.95;
    line-height: 1.9;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 17px;
    opacity: 0.9;
    font-weight: 500;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35),
                0 10px 40px rgba(0, 0, 0, 0.2);
    border: 6px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image img:hover {
    transform: scale(1.03) rotate(2deg);
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ecf0f1;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
    opacity: 0.85;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s;
}

.footer-section ul li:hover::before {
    transform: translateX(4px);
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #667eea;
    transition: width 0.3s;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    opacity: 0.7;
}

.footer-bottom p {
    font-size: 14px;
}

/* 加载动画 */
.loading {
    text-align: center;
    padding: 60px 40px;
    color: #95a5a6;
    font-size: 16px;
    position: relative;
}

.loading::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
    vertical-align: middle;
}

.products-section .loading::before {
    border-top-color: #f093fb;
}

.cases-section .loading::before {
    border-top-color: #4facfe;
}

.news-section .loading::before {
    border-top-color: #43e97b;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 响应式 */
@media (max-width: 1024px) {
    .products-grid, .cases-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .about-content {
        flex-direction: column;
        gap: 50px;
    }
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    .section-card {
        padding: 35px;
    }
    .section-title {
        font-size: 30px;
    }
    .title-icon {
        font-size: 30px;
    }
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .carousel-container {
        height: 480px;
        max-width: 95%;
        border-width: 8px;
    }
    .carousel-slide {
        padding: 0 50px;
    }
    .slide-content h1 {
        font-size: 40px;
    }
    .slide-content p {
        font-size: 18px;
    }
    .slide-image img {
        max-height: 380px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 30px 0 50px;
    }
    .carousel-container {
        height: 400px;
        max-width: 95%;
        border-width: 6px;
        border-radius: 18px;
    }
    .carousel-slide {
        padding: 0 30px;
    }
    .slide-content {
        padding: 25px;
    }
    .slide-content h1 {
        font-size: 32px;
    }
    .slide-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .slide-image {
        display: none;
    }
    .slide-btn {
        padding: 14px 34px;
        font-size: 16px;
    }
    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    section {
        padding: 50px 0;
    }
    .products-grid, .cases-grid, .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .section-card {
        padding: 30px;
    }
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 30px;
    }
    .card-header::after {
        width: 60px;
    }
    .section-title {
        font-size: 26px;
    }
    .title-icon {
        font-size: 26px;
    }
    .see-more-btn {
        width: 100%;
        justify-content: center;
    }
    .about-text h2 {
        font-size: 32px;
    }
    .about-stats {
        gap: 20px;
    }
    .stat-item {
        flex: 1;
        min-width: 140px;
        padding: 20px 30px;
    }
    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 350px;
        border-width: 5px;
    }
    .slide-content h1 {
        font-size: 26px;
    }
    .slide-content p {
        font-size: 14px;
    }
    .section-card {
        padding: 25px;
    }
    .section-title {
        font-size: 24px;
    }
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    .stat-item {
        width: 100%;
    }
}
