
.download-center {
    padding: 80px 0;
    background: #ffffff;
}

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

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

.section-header h2 {
    font-size: 42px;
    color: #000028;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,40,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,40,0.15);
}

.product-header {
    padding: 30px 20px;
    background: #000028;
    color: white;
    text-align: center;
}

.product-header h3 {
    font-size: 28px;
    margin: 0;
    font-weight: 500;
}

.product-tag {
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    margin-top: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.product-features {
    padding: 30px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000028;
    font-weight: bold;
}

.product-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    background: #fafafa;
}

.download-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #000028;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn:hover {
    background: #1a1a48;
    transform: scale(1.05);
}

.learn-more {
    color: #000028;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.learn-more:hover {
    color: #1a1a48;
    border-bottom-color: #1a1a48;
}

.download-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,40,0.05);
}

.info-item i {
    font-size: 30px;
    margin-right: 20px;
    color: #009688;
}

.info-item h4 {
    margin: 0 0 5px 0;
    color: #000028;
    font-weight: 500;
}

.info-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .download-info {
        grid-template-columns: 1fr;
    }
}