    .partnership-area {
    position: relative;
    background: url('../img/cta/partnership.jpg') center center/cover no-repeat;
    color: #fff;
    z-index: 1;
    overflow: hidden;
}

.partnership-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark tint overlay */
    z-index: -1;
}

.partnership-content {
    text-align: center;
    color: #fff;
}

.partnership-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.partnership-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.downloads-section
{
    background-color: #fff ;
}

.download-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.download-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.download-card:hover {
    background: #f0f4ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.download-card .icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.download-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.download-card p {
    font-size: 14px;
    color: #666;
}

.container h2 {
    text-align: center;
}