/* 基础样式重置 */
* {
    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: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部信息栏 */
.top-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

/* 主导航 */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo区域 */
.logo-area {
    flex: 0 0 200px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: #333;
}

/* 导航菜单 */
.nav {
    flex: 1;
    text-align: center;
    margin: 0 15px;
}

.nav-list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    gap: 3px;
}

.nav-link {
    display: block;
    padding: 8px 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #007bff;
}

/* 搜索区域 */
.search-area {
    flex: 0 0 180px;
    margin-left: 10px;
}

.search-form {
    display: flex;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 15px;
    background: #007bff;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #0056b3;
}

/* 移动端菜单按钮 */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* 移动端导航 */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    padding: 60px 20px 20px;
    transition: 0.3s;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
    text-align: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #007bff;
}

/* 遮罩层 */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* 英雄区域 */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 20px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary {
    background: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #fff;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

.hero-image {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.hero-image:hover .hero-img {
    transform: scale(1.05);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.2), transparent);
    pointer-events: none;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-text {
    font-size: 16px;
    color: #666;
}

/* 英雄区域增强 */
.hero-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.hero-feature i {
    color: #007bff;
    font-size: 20px;
}

.hero-feature span {
    font-size: 16px;
    color: #333;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: #fff;
}

.overlay-content {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.overlay-stat {
    text-align: center;
}

.overlay-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.overlay-text {
    font-size: 14px;
    opacity: 0.9;
}

/* 服务特点 */
.features {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
}

/* 服务特点列表 */
.feature-list {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.feature-list li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.feature-list li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* 服务优势 */
.advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00bcd4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    background: #007bff;
    color: #fff;
    transform: rotateY(180deg);
}

.advantage-icon i {
    font-size: 30px;
    color: #007bff;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon i {
    color: #fff;
}

.advantage-content {
    flex: 1;
}

.advantage-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.advantage-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #007bff;
}

.advantage-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.advantage-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.advantage-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.advantage-features li:hover {
    color: #007bff;
    transform: translateX(5px);
}

/* 服务保障 */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.guarantee-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #007bff, #00bcd4);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.guarantee-item:hover::before {
    transform: scaleY(1);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.guarantee-item:hover .guarantee-icon {
    background: #007bff;
    color: #fff;
    transform: rotateY(180deg);
}

.guarantee-icon i {
    font-size: 30px;
    color: #007bff;
    transition: all 0.3s ease;
}

.guarantee-item:hover .guarantee-icon i {
    color: #fff;
}

.guarantee-content {
    flex: 1;
}

.guarantee-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.guarantee-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #007bff;
}

.guarantee-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.guarantee-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantee-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.guarantee-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.guarantee-features li:hover {
    color: #007bff;
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-item {
        padding: 25px;
    }
    
    .guarantee-icon {
        width: 60px;
        height: 60px;
    }
    
    .guarantee-icon i {
        font-size: 24px;
    }
    
    .guarantee-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .guarantee {
        padding: 60px 0;
    }
    
    .guarantee-item {
        padding: 20px;
    }
    
    .guarantee-features li {
        font-size: 14px;
    }
}

/* 关于我们 */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 30px;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: #007bff;
    font-weight: bold;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* 服务流程 */
.process {
    padding: 80px 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step p {
    color: #666;
}

/* 服务流程详情 */
.step-details {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.step-details li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.step-details li:before {
    content: "→";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* 联系我们 */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 24px;
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* 页脚 */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 响应式设计优化 */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .nav-link {
        padding: 8px 8px;
        font-size: 13px;
    }
    
    .search-area {
        flex: 0 0 160px;
    }
    
    .hero-content h2 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .advantages-grid,
    .guarantee-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .search-area {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .header-wrapper {
        padding: 10px 0;
    }
    
    .logo-area {
        flex: 0 0 150px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .features-grid,
    .process-steps,
    .advantages-grid,
    .guarantee-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-text {
        font-size: 14px;
    }
    
    .advantage-item,
    .guarantee-item,
    .case-card {
        padding: 25px;
    }
    
    .advantage-icon,
    .guarantee-icon,
    .case-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i,
    .guarantee-icon i {
        font-size: 24px;
    }
    
    .advantage-content h3,
    .guarantee-content h3,
    .case-content h3 {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-tags {
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .feature-list li,
    .step-details li,
    .advantage-features li,
    .guarantee-features li {
        font-size: 14px;
    }
    
    .advantages,
    .guarantee,
    .cases {
        padding: 60px 0;
    }
    
    .advantage-item,
    .guarantee-item,
    .case-card {
        padding: 20px;
    }
    
    .advantage-features li,
    .guarantee-features li {
        font-size: 14px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-feature {
        padding: 12px;
    }
    
    .hero-feature i {
        font-size: 16px;
    }
    
    .hero-feature span {
        font-size: 14px;
    }
    
    .case-header,
    .case-content {
        padding: 15px;
    }
    
    .case-content h3 {
        font-size: 18px;
    }
    
    .case-description {
        font-size: 14px;
    }
    
    .detail-label,
    .detail-value {
        font-size: 13px;
    }
    
    .mobile-nav {
        width: 100%;
        max-width: none;
    }
    
    .mobile-nav-link {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .logo-area {
        flex: 0 0 120px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
}

/* 触摸设备优化 */
@media (hover: none) {
    .advantage-item:hover,
    .guarantee-item:hover,
    .case-card:hover,
    .hero-feature:hover,
    .tag:hover {
        transform: none;
    }
    
    .advantage-item:active,
    .guarantee-item:active,
    .case-card:active,
    .hero-feature:active,
    .tag:active {
        opacity: 0.8;
    }
}

/* 高分辨率屏幕支持 */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-content h2 {
        font-size: 56px;
    }
    
    .hero-content p {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

/* 打印样式优化 */
@media print {
    .header,
    .mobile-nav,
    .overlay,
    .contact-form,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .hero,
    .features,
    .about,
    .process,
    .contact {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 18pt;
    }
    
    .feature-card,
    .step,
    .advantage-item,
    .guarantee-item,
    .case-card {
        break-inside: avoid;
    }
}

/* 成功案例 */
.cases {
    padding: 80px 0;
    background: #fff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.case-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.case-header {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.case-badge {
    background: #28a745;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.case-content {
    padding: 25px;
}

.case-content h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.case-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.case-details {
    display: grid;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.case-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    color: #666;
    font-size: 14px;
}

.detail-value {
    color: #1a1a1a;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-header {
        padding: 20px;
    }
    
    .case-content {
        padding: 20px;
    }
    
    .case-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .cases {
        padding: 60px 0;
    }
    
    .case-header {
        padding: 15px;
    }
    
    .case-content {
        padding: 15px;
    }
    
    .case-content h3 {
        font-size: 18px;
    }
    
    .case-description {
        font-size: 14px;
    }
    
    .detail-label,
    .detail-value {
        font-size: 13px;
    }
} 