--color-blue: #2CA1DD;
  --color-green: #199e83;
  --color-yellow: #F0C554;

/* Download Apps Section Styles */
.download-apps-card {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.app-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e5e5;
}

.app-row:last-child {
    border-bottom: none;
}

.app-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-icon {
    flex-shrink: 0;
}

.app-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 0;
}
.app-logo-2 {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 0;
}

.app-label {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
}

.app-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-download {
    background-color: #3498db;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: none;
    transition: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
}

.btn-download:hover {
    background-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .app-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .app-info {
        justify-content: center;
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-download {
        min-width: 120px;
    }
    
    .app-logo {
        width: 140px;
        height: 140px;
    }
    
    .app-logo-2 {
        width: 200px;
        height: 200px;
    }
}